From acfc1c027ca55ee61384078e455bb0c87de661bb Mon Sep 17 00:00:00 2001 From: lucy Date: Mon, 9 Mar 2026 10:38:41 +0100 Subject: [PATCH] move ws to bar dir and add fix to not show scratchpad windows --- Ws.qml => modules/Bar/Ws.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Ws.qml => modules/Bar/Ws.qml (94%) diff --git a/Ws.qml b/modules/Bar/Ws.qml similarity index 94% rename from Ws.qml rename to modules/Bar/Ws.qml index 96c07c1..3c839d4 100644 --- a/Ws.qml +++ b/modules/Bar/Ws.qml @@ -25,7 +25,7 @@ Rectangle { id: wsRect implicitWidth: Settings.config.barHeight / 2 implicitHeight: Settings.config.barHeight / 2 - visible: modelData.monitor?.name == wsWrap.barScreen.name + visible: modelData.id < 0 ? false : modelData.monitor?.name == wsWrap.barScreen.name required property var modelData color: modelData.focused ? ThemeLoader.colors.base05 : ThemeLoader.colors.base03 radius: Settings.config.rounding