aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/waybar/style.css
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-13 13:43:19 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-13 13:43:19 +0100
commitea448973b2cb570d27c03483f64474be57e6ddb3 (patch)
tree613eef5f3dbbdfd44da5bb23b6537239e638f872 /dot_config/waybar/style.css
parent2f126ccb071f6d566824ce80c8b0cffd00a88c86 (diff)
downloaddotfiles-ea448973b2cb570d27c03483f64474be57e6ddb3.tar.gz
dotfiles-ea448973b2cb570d27c03483f64474be57e6ddb3.tar.bz2
dotfiles-ea448973b2cb570d27c03483f64474be57e6ddb3.zip
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.
Diffstat (limited to 'dot_config/waybar/style.css')
-rw-r--r--dot_config/waybar/style.css29
1 files changed, 28 insertions, 1 deletions
diff --git a/dot_config/waybar/style.css b/dot_config/waybar/style.css
index 59a41ff..f631736 100644
--- a/dot_config/waybar/style.css
+++ b/dot_config/waybar/style.css
@@ -43,8 +43,11 @@ window#waybar {
#pulseaudio,
#tray,
#window,
+#idle_inhibitor,
+#privacy,
#custom-memory,
-#custom-wifi {
+#custom-wifi,
+#custom-notifications {
padding: 0 6px;
}
@@ -88,6 +91,30 @@ window#waybar {
color: #ebdbb2; /* fg */
}
+#idle_inhibitor {
+ color: #928374; /* gray when idle allowed */
+}
+
+#idle_inhibitor.activated {
+ color: #fabd2f; /* yellow when inhibited */
+}
+
+#privacy {
+ color: #fb4934; /* red — only visible when active */
+}
+
+#custom-notifications {
+ color: #928374; /* gray baseline */
+}
+
+#custom-notifications.history {
+ color: #8ec07c; /* aqua — seen, not dismissed */
+}
+
+#custom-notifications.pending {
+ color: #fe8019; /* orange — unread */
+}
+
#battery.warning {
color: #fabd2f;
}