1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
name="pactl-mute"
version="1.0"
help_message=$(/usr/bin/cat <<-EOF
Toggle mute on the currently running Pulseaudio sink
Usage: pactl-mute
Options:
-h, --help print this message and exit
-v, --version print version number and exit
EOF
)
. /usr/local/lib/myminiparse.sh
SINK="$(pactl-get-running-sink)"
if [ -z "$SINK" ]; then
SINK=0
fi
pactl set-sink-mute "$SINK" toggle