diff --git a/.local/bin/toggle-notify b/.local/bin/toggle-notify new file mode 100755 index 00000000..2a3f548e --- /dev/null +++ b/.local/bin/toggle-notify @@ -0,0 +1,11 @@ +#!/usr/bin/env sh + +pidof dunst && + notify-send -t 1000 '🔕 Do not disturb' && + sleep 1 && + killall dunst && + exit + +dunst & +sleep 0.5 +notify-send -t 1000 '🔔 Disturb all you want'