mirror of
https://github.com/Fluffy-Bean/dots.git
synced 2025-06-02 00:13:14 +00:00
9 lines
279 B
Bash
Executable file
9 lines
279 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Toggle mic mute
|
|
pactl set-source-mute @DEFAULT_SOURCE@ toggle
|
|
|
|
if (pactl list sources | grep -m 2 Mute | tail -n 1 | awk '{print $2}' | grep -q yes) then
|
|
notify-send "Microphone" "Muted" -u critical
|
|
else
|
|
notify-send "Microphone" "Unmuted" -u low
|
|
fi
|