2022-11-24 10:39:12 -05:00
|
|
|
#!/bin/bash
|
|
|
|
if [ $(pamixer --get-mute) = false ]; then
|
2022-11-30 11:39:06 -05:00
|
|
|
spd-say -P important -Cw 'Muting!'
|
|
|
|
pamixer -t
|
2022-11-24 10:39:12 -05:00
|
|
|
else
|
2022-11-30 11:39:06 -05:00
|
|
|
pamixer -t
|
|
|
|
play -qnG synth 0.05 sin 440
|
|
|
|
spd-say -P important -Cw 'Unmuted!'
|
2022-11-24 10:39:12 -05:00
|
|
|
fi
|