From 4038309a4d0413ce09554797eb7a8b1a69c3a95c Mon Sep 17 00:00:00 2001 From: lucy Date: Mon, 9 Feb 2026 22:29:41 +0100 Subject: [PATCH] change color of active ws text to look better --- modules/bar/Workspaces.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bar/Workspaces.qml b/modules/bar/Workspaces.qml index 620f7fb..3111803 100644 --- a/modules/bar/Workspaces.qml +++ b/modules/bar/Workspaces.qml @@ -53,7 +53,7 @@ Rectangle { CustomText { anchors.centerIn: workspaceNumber text: parent.modelData.id - color: Colors.onSurfaceColor + color: modelData.focused ? Colors.onPrimaryColor : Colors.onSurfaceColor opacity: workspaceNumber.modelData.focused ? 1 : 0.5 } MouseArea {