Small change to mute-unmute script

This commit is contained in:
Jeremiah Ticket 2022-11-26 18:25:17 -07:00
parent 08aa0f293f
commit 4faea9059f

View File

@ -1,8 +1,8 @@
#!/bin/bash
if [ $(pamixer --get-mute) = false ]; then
spd-say -Cw 'muting'
spd-say -Cw 'Muting!'
pamixer -t
else
pamixer -t
spd-say -Cw 'unmuted'
spd-say -Cw 'Unmuted!'
fi