From 331a393ea06b372c4226d4e0a044323395a43d5c Mon Sep 17 00:00:00 2001 From: Sho Date: Sun, 2 Aug 2026 16:43:29 +0900 Subject: [PATCH] style(workspace): remove outer capsule border and add persistent faint outline borders to workspace pills --- quickshell/modules/topbar/TopLeftBar.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/quickshell/modules/topbar/TopLeftBar.qml b/quickshell/modules/topbar/TopLeftBar.qml index db1e5b4..46ca68e 100644 --- a/quickshell/modules/topbar/TopLeftBar.qml +++ b/quickshell/modules/topbar/TopLeftBar.qml @@ -63,7 +63,7 @@ GlassPanel { RowLayout { id: wsRow anchors.centerIn: parent - spacing: 2 + spacing: 4 Repeater { model: WorkspaceService.workspaceNames @@ -77,8 +77,11 @@ GlassPanel { Layout.preferredHeight: 22 radius: 5 color: isActive ? Theme.accent : (wsItemMouse.containsMouse ? Theme.currentLine : "transparent") + border.color: isActive ? Theme.accent : Qt.rgba(Theme.fg.r, Theme.fg.g, Theme.fg.b, 0.15) + border.width: 1 Behavior on color { ColorAnimation { duration: 120 } } + Behavior on border.color { ColorAnimation { duration: 120 } } Text { id: wsText