1
0
Fork 0
mirror of https://github.com/ItsDrike/dotfiles.git synced 2025-03-15 19:44:57 +00:00
dotfiles/home/.local/bin/scripts/gui/hyprland/toggle-notifications

11 lines
360 B
Text
Raw Normal View History

#!/bin/sh
if [ "$(dunstctl is-paused)" = "false" ]; then
notify-send "Notifications" "Pausing notifications..." -h string:x-canonical-private-synchronous:notif-pause
sleep 2
dunstctl set-paused true
else
dunstctl set-paused false
notify-send "Notifications" "Notifications enabled" -h string:x-canonical-private-synchronous:notif-pause
fi