Files
nixconfig/modules/home/wayland/apps/eww/bar/scripts/do-not-disturb
T
2026-09-10 19:54:50 +02:00

12 lines
254 B
Bash

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