From 606cafb2bab1ca8d8b2de1dbd870320f16828246 Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Tue, 25 Nov 2025 13:03:02 +0100 Subject: [PATCH] new font??? config options --- Components/CustomText.qml | 2 +- Config/Config.qml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Components/CustomText.qml b/Components/CustomText.qml index 37f8533..53ed176 100644 --- a/Components/CustomText.qml +++ b/Components/CustomText.qml @@ -16,7 +16,7 @@ Text { renderType: Text.NativeRendering textFormat: Text.PlainText color: DynamicColors.palette.m3onSurface - font.family: "Segoe UI Variable Text" + font.family: Config.baseFont font.pointSize: 12 Behavior on color { diff --git a/Config/Config.qml b/Config/Config.qml index 628be38..6a6b5f7 100644 --- a/Config/Config.qml +++ b/Config/Config.qml @@ -20,6 +20,7 @@ Singleton { property alias useDynamicColors: adapter.useDynamicColors property alias barConfig: adapter.barConfig property alias transparency: adapter.transparency + property alias baseFont: adapter.baseFont FileView { id: root @@ -48,6 +49,7 @@ Singleton { property bool useDynamicColors: false property BarConfig barConfig: BarConfig {} property Transparency transparency: Transparency {} + property string baseFont: "Segoe UI Variable Text" } } }