Files
dotfiles/.config/waybar/indicators/notification-silencing.sh

8 lines
178 B
Bash
Raw Normal View History

2026-03-07 19:11:53 +00:00
#!/bin/bash
if makoctl mode | grep -q 'do-not-disturb'; then
echo '{"text": "󰂛", "tooltip": "Notifications silenced", "class": "active"}'
else
echo '{"text": ""}'
fi