From 3435e338451c4f0c5f8f7ac3157e0f0f030200f6 Mon Sep 17 00:00:00 2001 From: Nikolai Nechaev Date: Sat, 13 Sep 2025 08:40:30 +0900 Subject: [PATCH] Fix: style: show active workspace on hyprland The `hyprland/workspaces` module has the CSS class `active` rather than `focused` for the current workspace. Update the default CSS selector for the current workspace to match both `button.focused` and `button.active`. --- resources/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/style.css b/resources/style.css index 7e830285..bcfcb5c8 100644 --- a/resources/style.css +++ b/resources/style.css @@ -63,7 +63,7 @@ button:hover { background: rgba(0, 0, 0, 0.2); } -#workspaces button.focused { +#workspaces button.focused, #workspaces button.active { background-color: #64727D; box-shadow: inset 0 -3px #ffffff; }