aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--quickshell/Procs.qml6
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