diff options
Diffstat (limited to '.scripts/dnd')
-rwxr-xr-x | .scripts/dnd | 11 |
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 |