blob: 251e1ce67af1ffdff933586313bc94b6e0a4fcc6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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
|