diff options
author | Marvin Borner | 2024-01-15 02:48:40 +0100 |
---|---|---|
committer | Marvin Borner | 2024-01-25 15:34:20 +0100 |
commit | ec70ec36a898e6dc5752fc777db8786d946b032e (patch) | |
tree | 9f56b780b6792da7d2a7d8b4822d043eb0b1166a /.scripts/dnd | |
parent | 8f6e86ee72a20fc9bbac62d71e0921b152eaa0bb (diff) |
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 |