mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
275 B
11 lines
275 B
1 year ago
|
#!/bin/sh
|
||
|
|
||
|
dunstctl rule dnd_low disable
|
||
|
dunstctl rule dnd_normal disable
|
||
|
dunstctl rule sound_normal enable
|
||
|
hist_size=$(dunstctl history | jq '.data[0] | length')
|
||
|
for i in `seq $hist_size`; do
|
||
|
dunstctl history-pop
|
||
|
done
|
||
|
notify-send -u low "dunst" "Do not disturb stopped"
|