posix fixes

This commit is contained in:
Luke Smith 2020-07-02 15:32:36 -04:00
parent f26304c59b
commit 00534b7cca
No known key found for this signature in database
GPG key ID: 4C50B54A911F6252

View file

@ -10,7 +10,7 @@ cache=/tmp/cpubarscache
case $BLOCK_BUTTON in case $BLOCK_BUTTON in
2) setsid -f "$TERMINAL" -e htop ;; 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";; one CPU core";;
6) "$TERMINAL" -e "$EDITOR" "$0" ;; 6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac esac
@ -19,27 +19,26 @@ esac
stats=$(awk '/cpu[0-9]+/ {printf "%d %d %d\n", substr($1,4), ($2 + $3 + $4 + $5), $5 }' /proc/stat) 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" [ ! -f $cache ] && echo "$stats" > "$cache"
old=$(cat "$cache") old=$(cat "$cache")
echo -n "🪨" printf "🪨"
echo "$stats" | while read row; do echo "$stats" | while read -r row; do
id=${row%% *} id=${row%% *}
rest=${row#* } rest=${row#* }
total=${rest%% *} total=${rest%% *}
idle=${rest##* } idle=${rest##* }
case "$(echo "$old" | awk '{if ($1 == id) case "$(echo "$old" | awk '{if ($1 == id)
printf "%d\n", (1 - (idle - $3) / (total - $2))*100 /12.5}' \ printf "%d\n", (1 - (idle - $3) / (total - $2))*100 /12.5}' \
id=$id total=$total idle=$idle)" in id="$id" total="$total" idle="$idle")" in
"0") echo -n "▁";; "0") printf "▁";;
"1") echo -n "▂";; "1") printf "▂";;
"2") echo -n "▃";; "2") printf "▃";;
"3") echo -n "▄";; "3") printf "▄";;
"4") echo -n "▅";; "4") printf "▅";;
"5") echo -n "▆";; "5") printf "▆";;
"6") echo -n "▇";; "6") printf "▇";;
"7") echo -n "█";; "7") printf "█";;
"8") echo -n "█";; "8") printf "█";;
esac esac
done done; printf "\\n"
echo ""
echo "$stats" > "$cache" echo "$stats" > "$cache"