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-cpubars4
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/statusbar/sb-cpubars b/.local/bin/statusbar/sb-cpubars
index 1684ead..a40dd05 100755
--- a/.local/bin/statusbar/sb-cpubars
+++ b/.local/bin/statusbar/sb-cpubars
@@ -10,7 +10,7 @@ cache=/tmp/cpubarscache
case $BLOCK_BUTTON in
2) setsid -f "$TERMINAL" -e htop ;;
- 3) notify-send " CPU load module" "Each bar represents
+ 3) notify-send "󰻠 CPU load module" "Each bar represents
one CPU core";;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
@@ -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 "CPU: "
+printf ""
echo "$stats" | while read -r row; do
id=${row%% *}
rest=${row#* }