From 4b6d7916e673efc7baecb40df5bc0a9509c834e6 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 12 Aug 2025 18:13:57 +1000 Subject: config: add clock font config Also use mono font for lock media artist Add rubik to nix font deps --- modules/dashboard/dash/DateTime.qml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'modules/dashboard') diff --git a/modules/dashboard/dash/DateTime.qml b/modules/dashboard/dash/DateTime.qml index cdba4db..b9383f6 100644 --- a/modules/dashboard/dash/DateTime.qml +++ b/modules/dashboard/dash/DateTime.qml @@ -27,6 +27,7 @@ Item { text: root.timeComponents[0] color: Colours.palette.m3secondary font.pointSize: Appearance.font.size.extraLarge + font.family: Appearance.font.family.clock font.weight: 600 } @@ -36,6 +37,7 @@ Item { text: "•••" color: Colours.palette.m3primary font.pointSize: Appearance.font.size.extraLarge * 0.9 + font.family: Appearance.font.family.clock } StyledText { @@ -44,6 +46,7 @@ Item { text: root.timeComponents[1] color: Colours.palette.m3secondary font.pointSize: Appearance.font.size.extraLarge + font.family: Appearance.font.family.clock font.weight: 600 } @@ -58,6 +61,7 @@ Item { text: root.timeComponents[2] ?? "" color: Colours.palette.m3secondary font.pointSize: Appearance.font.size.large + font.family: Appearance.font.family.clock font.weight: 600 } } @@ -69,6 +73,7 @@ Item { text: Time.format("ddd, d") color: Colours.palette.m3tertiary font.pointSize: Appearance.font.size.normal + font.family: Appearance.font.family.clock font.weight: 500 elide: Text.ElideRight } -- cgit v1.2.3-freya