From 4c5a54c2dd11f0391aa36af2e474bdff1f05f5f9 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Tue, 11 Aug 2026 19:51:25 -0400 Subject: [PATCH] Fixed wording for notifications so it sounds more natural. --- extras/barnard-sound.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/extras/barnard-sound.sh b/extras/barnard-sound.sh index 88f37f8..6979623 100755 --- a/extras/barnard-sound.sh +++ b/extras/barnard-sound.sh @@ -58,7 +58,7 @@ mute() { if [[ "$2" == "me" ]]; then [[ $notify ]] && notify "You muted yourself." else - [[ $notify ]] && notify "$2 muted themselves." + [[ $notify ]] && notify "$2 muted." fi } @@ -66,7 +66,7 @@ unmute() { if [[ "$2" == "me" ]]; then [[ $notify ]] && notify "You unmuted yourself." else - [[ $notify ]] && notify "$2 unmuted themselves." + [[ $notify ]] && notify "$2 unmuted." fi } @@ -74,7 +74,7 @@ deafen() { if [[ "$2" == "me" ]]; then [[ $notify ]] && notify "You deafened yourself." else - [[ $notify ]] && notify "$2 deafened themselves." + [[ $notify ]] && notify "$2 deafened." fi } @@ -82,7 +82,7 @@ undeafen() { if [[ "$2" == "me" ]]; then [[ $notify ]] && notify "You undeafened yourself." else - [[ $notify ]] && notify "$2 undeafened themselves." + [[ $notify ]] && notify "$2 undeafened." fi }