Fixed wording for notifications so it sounds more natural.

This commit is contained in:
Storm Dragon
2026-08-11 19:51:25 -04:00
parent eae1d8b99a
commit 4c5a54c2dd
+4 -4
View File
@@ -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
}