mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-19 10:17:44 +01:00
11 lines
275 B
Bash
Executable File
11 lines
275 B
Bash
Executable File
#!/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"
|