infrastructure/nixos/hosts/thalassa/null/home/eww/scripts/do-not-disturb.sh
2022-09-26 17:17:27 +02: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