scripts/toggle_mic.sh

10 lines
210 B
Bash
Raw Normal View History

2020-05-26 08:31:18 +02:00
#!/bin/bash
pulsemixer --id source-1 --toggle-mute
mic_state=$(pulsemixer --id source-1 --get-mute)
if [ "$mic_state" == "0" ]
then
notify-send "Mic is now unmuted"
else
notify-send "Mic is now muted"
fi