From 421bbb3e798409c56673dd5b1587d34a95e82af6 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 15 May 2026 18:41:25 +0200 Subject: [PATCH] Improve font rendering --- default/quickshell/omarchy-shell/plugins/bar/Bar.qml | 3 ++- .../omarchy-shell/plugins/bar/common/WidgetButton.qml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml index e5e4a128..0a4bc253 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/Bar.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/Bar.qml @@ -1367,7 +1367,8 @@ Item { text: buttonRoot.text color: buttonRoot.active ? root.urgent : root.foreground font.family: buttonRoot.fontFamily - font.pixelSize: buttonRoot.fontSize + font.pointSize: buttonRoot.fontSize * 0.75 + renderType: Text.NativeRendering rotation: buttonRoot.textRotation horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter diff --git a/default/quickshell/omarchy-shell/plugins/bar/common/WidgetButton.qml b/default/quickshell/omarchy-shell/plugins/bar/common/WidgetButton.qml index 547fbe79..23a1a70a 100644 --- a/default/quickshell/omarchy-shell/plugins/bar/common/WidgetButton.qml +++ b/default/quickshell/omarchy-shell/plugins/bar/common/WidgetButton.qml @@ -41,7 +41,8 @@ Item { text: root.text color: root.active ? root.activeColor : root.foreground font.family: root.fontFamily - font.pixelSize: root.fontSize + font.pointSize: root.fontSize * 0.75 + renderType: Text.NativeRendering rotation: root.textRotation horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter