diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2025-12-12 22:54:20 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2025-12-12 22:54:20 +0530 |
| commit | edaf04f79d33ba96ef7ac548fbad766e0546a200 (patch) | |
| tree | 71842f2e7587ede227343c1e5d2f7f7d9c4c7f83 | |
| parent | 854ebf712f7684032c4a7d9fe5a58412e320b729 (diff) | |
the infamous 13
| -rw-r--r-- | quickshell/Procs.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quickshell/Procs.qml b/quickshell/Procs.qml index 5819a34..7116604 100644 --- a/quickshell/Procs.qml +++ b/quickshell/Procs.qml @@ -56,7 +56,7 @@ Scope { command: ["sh", "-c", "~/.config/quickshell/scripts/cpu_temp.sh"] stdout: SplitParser { onRead: data => { - cpu_temperature = parseInt(data.trim()) || 13; + cpu_temperature = parseInt(data.trim()) || 0; } } Component.onCompleted: running = true @@ -80,7 +80,7 @@ Scope { command: ["sh", "-c", "~/.config/quickshell/scripts/volume.sh"] stdout: SplitParser { onRead: data => { - volume = parseInt(data.trim()) || 13; + volume = parseInt(data.trim()) || 0; } } Component.onCompleted: running = true @@ -91,7 +91,7 @@ Scope { command: ["sh", "-c", "~/.config/quickshell/scripts/battery.sh"] stdout: SplitParser { onRead: data => { - battery = parseInt(data.trim()) || 13; + battery = parseInt(data.trim()) || 0; } } Component.onCompleted: running = true |
