aboutsummaryrefslogtreecommitdiff
path: root/.scripts/dnd
diff options
context:
space:
mode:
Diffstat (limited to '.scripts/dnd')
-rwxr-xr-x.scripts/dnd11
1 files changed, 11 insertions, 0 deletions
diff --git a/.scripts/dnd b/.scripts/dnd
new file mode 100755
index 0000000..251e1ce
--- /dev/null
+++ b/.scripts/dnd
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+if [ "$(dunstctl is-paused)" = "true" ]; then
+ killall -SIGUSR2 dunst
+ notify-send "disturb!"
+else
+ notify-send "do not disturb!"
+ sleep 3
+ dunstctl close-all
+ killall -SIGUSR1 dunst
+fi