From edaf04f79d33ba96ef7ac548fbad766e0546a200 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Fri, 12 Dec 2025 22:54:20 +0530 Subject: the infamous 13 --- quickshell/Procs.qml | 6 +++--- 1 file 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 -- cgit v1.2.3