From 44c98553dcf3506da13b7120469249a256941920 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Tue, 26 Aug 2025 13:40:35 -0400 Subject: [PATCH] Workspace: slimmer look --- Modules/Bar/Widgets/Workspace.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Modules/Bar/Widgets/Workspace.qml b/Modules/Bar/Widgets/Workspace.qml index cd9ad46..1255ba7 100644 --- a/Modules/Bar/Widgets/Workspace.qml +++ b/Modules/Bar/Widgets/Workspace.qml @@ -152,7 +152,7 @@ Item { model: localWorkspaces Item { id: workspacePillContainer - height: Math.round(19 * scaling) + height: Math.round(16 * scaling) width: root.calculatedWsWidth(model) Rectangle { @@ -166,12 +166,13 @@ Item { Text { text: { if (model.name && model.name.length > 0) { - return model.name.substring(0, 2).toUpperCase() + return model.name.substring(0, 2) } else { return model.idx.toString() } } font.pointSize: model.isFocused ? Style.fontSizeXS * scaling : Style.fontSizeXXS * scaling + font.capitalization: Font.SmallCaps horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter wrapMode: Text.Wrap