diff options
| author | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 21:44:27 +1000 |
|---|---|---|
| committer | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 21:44:27 +1000 |
| commit | f263df3ccdc7eab6d3befe8f189715df3cf27b59 (patch) | |
| tree | 3d6c4b272937fcbda00e0848939b13c630ce20d0 /modules | |
| parent | nix: add qt log rules to devshell (diff) | |
| download | caelestia-shell-f263df3ccdc7eab6d3befe8f189715df3cf27b59.tar.gz caelestia-shell-f263df3ccdc7eab6d3befe8f189715df3cf27b59.tar.bz2 caelestia-shell-f263df3ccdc7eab6d3befe8f189715df3cf27b59.zip | |
internal: create service config
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/dashboard/dash/Weather.qml | 2 | ||||
| -rw-r--r-- | modules/lock/WeatherInfo.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/dashboard/dash/Weather.qml b/modules/dashboard/dash/Weather.qml index 52d026d..6bb9792 100644 --- a/modules/dashboard/dash/Weather.qml +++ b/modules/dashboard/dash/Weather.qml @@ -38,7 +38,7 @@ Item { anchors.horizontalCenter: parent.horizontalCenter animate: true - text: Config.dashboard.useFahrenheit ? Weather.tempF : Weather.tempC + text: Config.services.useFahrenheit ? Weather.tempF : Weather.tempC color: Colours.palette.m3primary font.pointSize: Appearance.font.size.extraLarge font.weight: 500 diff --git a/modules/lock/WeatherInfo.qml b/modules/lock/WeatherInfo.qml index bbb529f..c5d1cf5 100644 --- a/modules/lock/WeatherInfo.qml +++ b/modules/lock/WeatherInfo.qml @@ -40,7 +40,7 @@ RowLayout { Layout.fillWidth: true animate: true - text: Config.dashboard.useFahrenheit ? Weather.tempF : Weather.tempC + text: Config.services.useFahrenheit ? Weather.tempF : Weather.tempC color: Colours.palette.m3primary horizontalAlignment: Text.AlignHCenter font.pointSize: Appearance.font.size.extraLarge |