summaryrefslogtreecommitdiff
path: root/notify-sound.sh
diff options
context:
space:
mode:
Diffstat (limited to 'notify-sound.sh')
-rwxr-xr-xnotify-sound.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/notify-sound.sh b/notify-sound.sh
new file mode 100755
index 0000000..84170d2
--- /dev/null
+++ b/notify-sound.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+SILENT_FILE="/tmp/notify-sound-silent"
+case "$1" in
+ "on")
+ rm -rf "$SILENT_FILE"
+ notify-send "Notification sound on"
+ ;;
+ "off")
+ touch "$SILENT_FILE"
+ notify-send "Notification sound off"
+ ;;
+ *)
+ [ ! -f "$SILENT_FILE" ] && paplay ~/.local/share/sounds/notification.flac
+ ;;
+esac