infrastructure/hosts/thalassa/null/home/eww/scripts/do-not-disturb.sh
2024-01-03 17:01:29 +01:00

10 lines
252 B
Bash
Executable file

#!/usr/bin/env nix-shell
#! nix-shell -p jq -i bash
if makoctl mode | rg -q "do-not-disturb"; then
eww update dnd=""
makoctl mode -r do-not-disturb > /dev/null
else
eww update dnd=""
makoctl mode -a do-not-disturb > /dev/null
fi