blob: 9b700b597b86e846422cc8ea7cb421c476bd260f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env bash
TOGGLE=$HOME/.local/share/.pause_notifications
if [ ! -e $TOGGLE ]; then
touch $TOGGLE
dunstify --appname="notifications" --icon="chronometer-pause" "pausing" -u low
sleep 3
killall -SIGUSR1 dunst # pause
else
rm $TOGGLE
killall -SIGUSR2 dunst # resume
dunstify --appname="notifications" --icon="chronometer-start" "here's what happened" -u low
fi
|