diff --git a/modules/bar/components/Cpu.qml b/modules/bar/components/Cpu.qml index 797047c..41085be 100644 --- a/modules/bar/components/Cpu.qml +++ b/modules/bar/components/Cpu.qml @@ -47,7 +47,7 @@ StyledButton { when: root.showTemp PropertyChanges { text { - text: `${(SystemInfo.cpuTemp)}℃` + text: ` ${SystemInfo.cpuTemp.toFixed().toString().padStart(2, "_")}℃` } } } diff --git a/modules/bar/components/Gpu.qml b/modules/bar/components/Gpu.qml index a201562..fa29708 100644 --- a/modules/bar/components/Gpu.qml +++ b/modules/bar/components/Gpu.qml @@ -47,7 +47,7 @@ StyledButton { when: root.showTemp PropertyChanges { text { - text: `${(SystemInfo.gpuTemp)}℃` + text: ` ${SystemInfo.gpuTemp.toFixed().toString().padStart(2, "_")}℃` } } }