I38/scripts/mute-unmute.sh

9 lines
156 B
Bash
Raw Normal View History

#!/bin/bash
if [ $(pamixer --get-mute) = false ]; then
2022-11-26 20:27:14 -05:00
spd-say -P important -Cw 'Muting!'
pamixer -t
else
pamixer -t
2022-11-26 20:27:14 -05:00
spd-say -P important -Cw 'Unmuted!'
fi