From 692b291678a80099e4d548a01e04d6cd867a0b30 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 15 May 2026 21:17:43 +0200 Subject: [PATCH] Workspaces without windows are greyed out --- default/quickshell/omarchy-shell/plugins/bar/Bar.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml index 2bd5c9aa..13eb71f0 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml @@ -1419,7 +1419,7 @@ Item { property bool focused: Hyprland.focusedWorkspace !== null && Hyprland.focusedWorkspace.id === modelData text: focused ? "󱓻" : (modelData === 10 ? "0" : String(modelData)) - opacity: occupied || modelData <= 5 || focused ? 1 : 0.5 + opacity: occupied || focused ? 1 : 0.5 horizontalMargin: 6 verticalPadding: 6 fixedWidth: root.vertical ? root.barSize : 22