From ea448973b2cb570d27c03483f64474be57e6ddb3 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Wed, 13 May 2026 13:43:19 +0100 Subject: style(waybar): label and color idle/privacy/notifications modules The idle_inhibitor em-dash and bare mako '0' blended with the clock. - mako counter: prefix 'NTF', gray when empty, aqua for history, orange for pending. - idle_inhibitor: 'IDL'/'INH' with gray/yellow. - privacy: red (only visible when screensharing or mic-active). - Add padding rules so the new modules line up with the rest. --- dot_config/waybar/executable_mako-status.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dot_config/waybar/executable_mako-status.sh') diff --git a/dot_config/waybar/executable_mako-status.sh b/dot_config/waybar/executable_mako-status.sh index ed89661..3c50172 100644 --- a/dot_config/waybar/executable_mako-status.sh +++ b/dot_config/waybar/executable_mako-status.sh @@ -14,13 +14,13 @@ pending=$(makoctl list 2>/dev/null | grep -c '"summary"' || true) if [ "$pending" -gt 0 ]; then - text="!$pending" + text="NTF !$pending" class="pending" elif [ "$count" -gt 0 ]; then - text="$count" + text="NTF $count" class="history" else - text="0" + text="NTF 0" class="empty" fi -- cgit v1.3.1