Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 4528  / 3 Years ago, tue, august 10, 2021, 12:24:58

I'm using this method to mute the microphone in Ubuntu 13.04, however I'm missing a visual representation that the action has taken place and is currently in action.



Is it possible to improve this method, or use another method, to have my microphone muted and know for sure that this has happened? A microphone indicator would be enough, probably.


More From » microphone

 Answers
1

OK, I've solved it!



I've created two shell files:



mute_mic.sh:



killall notify-osd;
amixer set Capture nocap && notify-send 'Microphone ! DISABLED !'


unmute_mic.sh:



killall notify-osd;
amixer set Capture cap && notify-send 'Microphone ! ENABLED !'


Then I've simply assigned to run those two files on my desired keyboard shortcuts.



Thanks to @Wouter for finding the notify-send command!


[#30519] Thursday, August 12, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
eving

Total Points: 162
Total Questions: 102
Total Answers: 112

Location: Trinidad and Tobago
Member since Thu, Dec 1, 2022
1 Year ago
eving questions
;