mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
12 lines
191 B
Bash
Executable File
12 lines
191 B
Bash
Executable File
#!/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'
|