15 lines
363 B
Bash
Executable file
15 lines
363 B
Bash
Executable file
#!/bin/sh
|
|
|
|
muted() {
|
|
pactl get-source-mute @DEFAULT_SOURCE@ | awk '{print $2}'
|
|
}
|
|
|
|
pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
|
|
|
if [ "$(muted)" = "yes" ]; then
|
|
notify-send -h string:x-dunst-stack-tag:"togmic" \
|
|
"Microphone Muted" -i mic-off
|
|
else
|
|
notify-send -h string:x-dunst-stack-tag:"togmic" \
|
|
"Microphone Unmuted" -i mic-ready
|
|
fi
|