fix(hyprland): switch workspaces module and add active workspace styling

This commit is contained in:
2026-05-04 16:31:17 -07:00
parent 2ad618af1b
commit cd2d55137b
2 changed files with 18 additions and 8 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
{ {
"spacing": 2, // Gaps between modules (4px) "spacing": 2, // Gaps between modules (4px)
"modules-left": [ "modules-left": [
"sway/workspaces", "hyprland/workspaces",
"sway/mode", "sway/mode",
"sway/scratchpad", "sway/scratchpad",
"sway/window" "sway/window"
+17 -7
View File
@@ -49,7 +49,7 @@ button:hover {
#workspaces button { #workspaces button {
padding: 0 4px; padding: 0 4px;
/*background-color: transparent;*/ background-color: transparent;
color: #ffffff; color: #ffffff;
} }
@@ -57,15 +57,25 @@ button:hover {
background: rgba(0, 0, 0, 0.2); background: rgba(0, 0, 0, 0.2);
} }
#workspaces button.focused { #workspaces button.active {
background-color: #64727D; background-color: #eb4d4b;
/*box-shadow: inset 0 -3px #ffffff;*/ box-shadow: inset 0 -3px #ffffff;
color: #ffffff;
font-weight: bold;
} }
#workspaces button.urgent { #workspaces button.urgent {
background-color: #eb4d4b; background-color: #eb4d4b;
} }
#workspaces button.visible {
background-color: #64727D;
}
#workspaces button.empty {
background-color: transparent;
}
#mode { #mode {
background-color: #64727D; background-color: #64727D;
box-shadow: inset 0 -3px #ffffff; box-shadow: inset 0 -3px #ffffff;
@@ -93,17 +103,17 @@ button:hover {
} }
#window, #window,
#workspaces { #workspaces-hyprland {
margin: 0 4px; margin: 0 4px;
} }
/* If workspaces is the leftmost module, omit left margin */ /* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces { .modules-left > widget:first-child > #workspaces-hyprland {
margin-left: 0; margin-left: 0;
} }
/* If workspaces is the rightmost module, omit right margin */ /* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces { .modules-right > widget:last-child > #workspaces-hyprland {
margin-right: 0; margin-right: 0;
} }