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 }