summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorEvertiro <dgriffiths@widgitlabs.com>2026-02-20 00:32:09 -0600
committerGitHub <noreply@github.com>2026-02-20 17:32:09 +1100
commit4be8fc9693e439c487f091413289b782d78130e7 (patch)
tree19c5adf8f527e958e28293404145c90bea9022ff /modules
parentconfig: added option to set session icons (#1189) (diff)
downloadcaelestia-shell-4be8fc9693e439c487f091413289b782d78130e7.tar.gz
caelestia-shell-4be8fc9693e439c487f091413289b782d78130e7.tar.bz2
caelestia-shell-4be8fc9693e439c487f091413289b782d78130e7.zip
feat: allow different systems for weather/performance (#1109)
* Allow different systems for weather/performance Signed-off-by: Dan Griffiths <dgriffiths@widgitlabs.com> * readme: update options Signed-off-by: Dan Griffiths <dgriffiths@widgitlabs.com> --------- Signed-off-by: Dan Griffiths <dgriffiths@widgitlabs.com>
Diffstat (limited to 'modules')
-rw-r--r--modules/dashboard/Performance.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dashboard/Performance.qml b/modules/dashboard/Performance.qml
index a4e24c4..e73d8ed 100644
--- a/modules/dashboard/Performance.qml
+++ b/modules/dashboard/Performance.qml
@@ -13,7 +13,7 @@ Item {
readonly property int minWidth: 400 + 400 + Appearance.spacing.normal + 120 + Appearance.padding.large * 2
function displayTemp(temp: real): string {
- return `${Math.ceil(Config.services.useFahrenheit ? temp * 1.8 + 32 : temp)}°${Config.services.useFahrenheit ? "F" : "C"}`;
+ return `${Math.ceil(Config.services.useFahrenheitPerformance ? temp * 1.8 + 32 : temp)}°${Config.services.useFahrenheitPerformance ? "F" : "C"}`;
}
implicitWidth: Math.max(minWidth, content.implicitWidth)