From 0498d7ea98c05e2424bfd78ceaa7b804d9cf294e Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 23 Sep 2025 21:36:09 +0200 Subject: [PATCH] overview: clearer numbers --- .../quickshell/ii/modules/overview/OverviewWidget.qml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.config/quickshell/ii/modules/overview/OverviewWidget.qml b/.config/quickshell/ii/modules/overview/OverviewWidget.qml index 13ec6370e..1c37386ee 100644 --- a/.config/quickshell/ii/modules/overview/OverviewWidget.qml +++ b/.config/quickshell/ii/modules/overview/OverviewWidget.qml @@ -32,7 +32,7 @@ Item { ((monitor.height - monitorData?.reserved[1] - monitorData?.reserved[3]) * root.scale / monitor.scale) property real workspaceNumberMargin: 80 - property real workspaceNumberSize: Math.min(workspaceImplicitHeight, workspaceImplicitWidth) * monitor.scale + property real workspaceNumberSize: 250 * monitor.scale property int workspaceZ: 0 property int windowZ: 1 property int windowDraggingZ: 99999 @@ -97,8 +97,11 @@ Item { StyledText { anchors.centerIn: parent text: workspaceValue - font.pixelSize: root.workspaceNumberSize * root.scale - font.weight: Font.DemiBold + font { + pixelSize: root.workspaceNumberSize * root.scale + weight: Font.DemiBold + family: Appearance.font.family.expressive + } color: ColorUtils.transparentize(Appearance.colors.colOnLayer1, 0.8) horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter