diff options
| author | William (Liam) Snow IV <mail@liamsnow.com> | 2025-07-03 00:08:25 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-03 14:08:25 +1000 |
| commit | b053130570c40c19c124d409d7843ad825312525 (patch) | |
| tree | a4fbdd101ac013fdac587c39d514318763a3e28f /modules/dashboard | |
| parent | internal: set default bpm to 1 (diff) | |
| download | caelestia-shell-b053130570c40c19c124d409d7843ad825312525.tar.gz caelestia-shell-b053130570c40c19c124d409d7843ad825312525.tar.bz2 caelestia-shell-b053130570c40c19c124d409d7843ad825312525.zip | |
feat: fahrenheit option for weather (#189)
* Added Fahrenheit to Weather Service
* some fixes
Allow for hot reloading config opt
Add opt to example config
---------
Co-authored-by: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
Diffstat (limited to 'modules/dashboard')
| -rw-r--r-- | modules/dashboard/dash/Weather.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dashboard/dash/Weather.qml b/modules/dashboard/dash/Weather.qml index cc19385..f7d0f9b 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: `${Weather.temperature}°C` + text: Config.dashboard.useFahrenheit ? Weather.tempF : Weather.tempC color: Colours.palette.m3primary font.pointSize: Appearance.font.size.extraLarge font.weight: 500 |