13 lines
275 B
Bash
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
|