Files
nixconfig/modules/home/wayland/apps/eww/bar/scripts/do-not-disturb
2026-06-17 20:04:08 +02:00

16 lines
249 B
Bash

#!/usr/bin/env bash
case "$1" in
status)
dunstctl is-paused
;;
*)
if dunstctl is-paused | grep -q true; then
dunstctl set-paused false
echo false
else
dunstctl set-paused true
echo true
fi
;;
esac