diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-12 18:13:57 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-12 18:13:57 +1000 |
| commit | 4b6d7916e673efc7baecb40df5bc0a9509c834e6 (patch) | |
| tree | 4c51613dc318696864ef1fc121b8d02c3039f24d /modules/lock/Center.qml | |
| parent | config: change default fonts (diff) | |
| download | caelestia-shell-4b6d7916e673efc7baecb40df5bc0a9509c834e6.tar.gz caelestia-shell-4b6d7916e673efc7baecb40df5bc0a9509c834e6.tar.bz2 caelestia-shell-4b6d7916e673efc7baecb40df5bc0a9509c834e6.zip | |
config: add clock font config
Also use mono font for lock media artist
Add rubik to nix font deps
Diffstat (limited to 'modules/lock/Center.qml')
| -rw-r--r-- | modules/lock/Center.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/lock/Center.qml b/modules/lock/Center.qml index fecd4aa..574894b 100644 --- a/modules/lock/Center.qml +++ b/modules/lock/Center.qml @@ -30,6 +30,7 @@ ColumnLayout { text: root.timeComponents[0] color: Colours.palette.m3secondary font.pointSize: Math.floor(Appearance.font.size.extraLarge * 3 * root.centerScale) + font.family: Appearance.font.family.clock font.bold: true } @@ -38,6 +39,7 @@ ColumnLayout { text: ":" color: Colours.palette.m3primary font.pointSize: Math.floor(Appearance.font.size.extraLarge * 3 * root.centerScale) + font.family: Appearance.font.family.clock font.bold: true } @@ -46,6 +48,7 @@ ColumnLayout { text: root.timeComponents[1] color: Colours.palette.m3secondary font.pointSize: Math.floor(Appearance.font.size.extraLarge * 3 * root.centerScale) + font.family: Appearance.font.family.clock font.bold: true } @@ -61,6 +64,7 @@ ColumnLayout { text: root.timeComponents[2] ?? "" color: Colours.palette.m3primary font.pointSize: Math.floor(Appearance.font.size.extraLarge * 2 * root.centerScale) + font.family: Appearance.font.family.clock font.bold: true } } |