aboutsummaryrefslogtreecommitdiff
path: root/.scripts/dnd
diff options
context:
space:
mode:
authorMarvin Borner2024-01-15 02:48:40 +0100
committerMarvin Borner2024-01-25 15:34:20 +0100
commitec70ec36a898e6dc5752fc777db8786d946b032e (patch)
tree9f56b780b6792da7d2a7d8b4822d043eb0b1166a /.scripts/dnd
parent8f6e86ee72a20fc9bbac62d71e0921b152eaa0bb (diff)
script syncHEADmaster
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