From 4faea9059fb7d2975c8d1774495004379169076f Mon Sep 17 00:00:00 2001 From: Jeremiah Ticket Date: Sat, 26 Nov 2022 18:25:17 -0700 Subject: [PATCH] Small change to mute-unmute script --- scripts/mute-unmute.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/mute-unmute.sh b/scripts/mute-unmute.sh index 0aa6c26..df61bee 100755 --- a/scripts/mute-unmute.sh +++ b/scripts/mute-unmute.sh @@ -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