summaryrefslogtreecommitdiff
path: root/.local/bin/statusbar/sb-cpubars
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/statusbar/sb-cpubars')
-rwxr-xr-x.local/bin/statusbar/sb-cpubars2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/statusbar/sb-cpubars b/.local/bin/statusbar/sb-cpubars
index e60864a..1684ead 100755
--- a/.local/bin/statusbar/sb-cpubars
+++ b/.local/bin/statusbar/sb-cpubars
@@ -19,7 +19,7 @@ esac
stats=$(awk '/cpu[0-9]+/ {printf "%d %d %d\n", substr($1,4), ($2 + $3 + $4 + $5), $5 }' /proc/stat)
[ ! -f $cache ] && echo "$stats" > "$cache"
old=$(cat "$cache")
-printf ""
+printf "CPU: "
echo "$stats" | while read -r row; do
id=${row%% *}
rest=${row#* }