vitorpy's Dotfiles
at main 8 lines 260 B view raw
1#!/bin/bash 2 3# Check if DND is active and display appropriate icon 4if makoctl mode | grep -q "do-not-disturb"; then 5 echo "{\"text\": \"\", \"tooltip\": \"Do Not Disturb: ON\"}" 6else 7 echo "{\"text\": \"\", \"tooltip\": \"Do Not Disturb: OFF\"}" 8fi