mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-18 18:07:45 +01:00
11 lines
275 B
Plaintext
11 lines
275 B
Plaintext
|
#!/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"
|