#!/bin/bash
# Print the current do-not-disturb state as a bar icon.
# Called by eww as a defpoll.
if makoctl mode 2>/dev/null | grep -q dnd; then
    echo ""   # bell-off: do-not-disturb active
else
    echo ""   # bell-ring: notifications on
fi
