index — dots-the-third @ 6fca09c1dd39c0405f5541b0aea7c3b7f4b0f578

I don't need nix, I have a way worse solution!

hypr/.config/hypr/scripts/dnd.sh (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
#!/bin/bash

if [ "$(makoctl mode)" == "do-not-disturb" ]; then
    notify-send "DND OFF"
    makoctl mode -r do-not-disturb && echo "Do Not Disturb Mode OFF"
else
    notify-send "DND OFF"
    makoctl mode -s do-not-disturb && echo "Do Not Disturb Mode ON"
fi