From 3ab91b663a127d91eb91f5630024104c3c077a86 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 26 Feb 2026 11:51:18 +0100 Subject: [PATCH] Fix bad font reference --- default/sddm/omarchy/Main.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/default/sddm/omarchy/Main.qml b/default/sddm/omarchy/Main.qml index 30a491aa..93ecfb08 100644 --- a/default/sddm/omarchy/Main.qml +++ b/default/sddm/omarchy/Main.qml @@ -49,7 +49,7 @@ Rectangle { Text { text: "\uf023" color: "#ffffff" - font.family: "JetBrainsMono NF" + font.family: "JetBrainsMono Nerd Font" font.pixelSize: root.height * 0.025 anchors.verticalCenter: parent.verticalCenter } @@ -67,7 +67,7 @@ Rectangle { anchors.margins: root.height * 0.008 verticalAlignment: TextInput.AlignVCenter echoMode: TextInput.Password - font.family: "JetBrainsMono NF" + font.family: "JetBrainsMono Nerd Font" font.pixelSize: root.height * 0.02 font.letterSpacing: root.height * 0.004 passwordCharacter: "\u2022" @@ -88,7 +88,7 @@ Rectangle { id: errorMessage text: "" color: "#f7768e" - font.family: "JetBrainsMono NF" + font.family: "JetBrainsMono Nerd Font" font.pixelSize: root.height * 0.018 anchors.horizontalCenter: parent.horizontalCenter }