From 881b5d177f0880ab04913142273291b8ca1b6e35 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 17 May 2026 09:12:41 +0200 Subject: [PATCH] Use Liberation Sans for notifications but with glyph fallback --- config/fontconfig/fonts.conf | 9 +++++++++ .../notifications/components/NotificationCard.qml | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/config/fontconfig/fonts.conf b/config/fontconfig/fonts.conf index e1230262..e5e6598e 100644 --- a/config/fontconfig/fonts.conf +++ b/config/fontconfig/fonts.conf @@ -56,9 +56,18 @@ + + Liberation Sans + + JetBrainsMono Nerd Font + Noto Color Emoji + + + sans-serif + JetBrainsMono Nerd Font Noto Color Emoji diff --git a/default/quickshell/omarchy-shell/plugins/notifications/components/NotificationCard.qml b/default/quickshell/omarchy-shell/plugins/notifications/components/NotificationCard.qml index d379cb5b..68444e29 100644 --- a/default/quickshell/omarchy-shell/plugins/notifications/components/NotificationCard.qml +++ b/default/quickshell/omarchy-shell/plugins/notifications/components/NotificationCard.qml @@ -199,7 +199,7 @@ Rectangle { Layout.fillWidth: true visible: root.summary.length > 0 text: root.summary - font.family: root.fontFamily + font.family: "Liberation Sans" color: Color.notifications.text font.pixelSize: 13 font.bold: true @@ -214,7 +214,7 @@ Rectangle { visible: root.body.length > 0 text: root.sanitizeBody(root.body) textFormat: Text.StyledText - font.family: root.fontFamily + font.family: "Liberation Sans" color: root.bodyColor font.pixelSize: 13 wrapMode: Text.WordWrap