From 98eb0f87ba140e9f955c559a41d8f4c73344e0e1 Mon Sep 17 00:00:00 2001 From: Daniel Fainberg Date: Sun, 12 Jul 2026 08:01:41 +0200 Subject: [PATCH] feat(waybar): highlight active workspace and flag urgent ones Style the `hyprland/workspaces` buttons so the focused workspace is distinguishable when several are occupied: white text, darker background, blue underline; urgent workspaces turn red. Co-Authored-By: Claude Opus 4.8 --- modules/home.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modules/home.nix b/modules/home.nix index 0c94223..c5123ef 100644 --- a/modules/home.nix +++ b/modules/home.nix @@ -687,6 +687,18 @@ in #battery.charging { color: #98c379; } + #workspaces button { + padding: 0 8px; + color: #bbbbbb; + } + #workspaces button.active { + color: #ffffff; + background: #333333; + box-shadow: inset 0 -2px #61afef; + } + #workspaces button.urgent { + color: #e06c75; + } ''; }; }