aboutsummaryrefslogtreecommitdiff
path: root/old/dunst-toggle
blob: 2de2343dd0746f8013ec7f0a75b287ec0aeb58d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

# Toggle "do not disturbe" mode with dunst
# Requires: dunst, notify-send

if [ "$(dunstctl is-paused)" = "false" ]; then
	notify-send -t 3000 "Notifications: OFF" "Notifications will be hidden"
	sleep 3
	dunstctl set-paused true
else
	dunstctl set-paused false
	notify-send -t 3000 "Notifications: ON" "Notifications reactivated"
fi

Generated with cgit - Back to sebastiano.tronto.net