Files
nixconfig/modules/home/wayland/apps/eww/bar/scripts/do-not-disturb
T
2026-09-11 22:40:11 +02:00

13 lines
275 B
Bash

#!/usr/bin/env bash
# Pause / resume dunst notifications.
case ${1:-} in
status) dunstctl is-paused ;;
*)
detach_self "$@"
dunstctl set-paused toggle
state=$(dunstctl is-paused)
eww update do-not-disturb="$state" 2>/dev/null
echo "$state"
;;
esac