summaryrefslogtreecommitdiff
path: root/i3blocks-cpuload.sh
diff options
context:
space:
mode:
Diffstat (limited to 'i3blocks-cpuload.sh')
-rwxr-xr-xi3blocks-cpuload.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/i3blocks-cpuload.sh b/i3blocks-cpuload.sh
index 6d3773f..8d61815 100755
--- a/i3blocks-cpuload.sh
+++ b/i3blocks-cpuload.sh
@@ -2,15 +2,14 @@
cpu_count=4
low=25
high=75
-icon=󰻠
icon_low=󰒲
icon_mid=󰜎
icon_high=󱅝
-avg_load=$(uptime | cut -d, -f4 | cut -d: -f2)
+#min_avg_usage=$(vmstat | tail -1 | cut -w -f17)
+avg_load=$(sysctl vm.loadavg | cut -w -f3)
percent=$(echo "result = $avg_load / $cpu_count * 100; scale=0; result / 1" | bc -l)
-printf $icon
[ $percent -lt $low ] && printf $icon_low
[ $percent -ge $low ] && [ $percent -lt $high ] && printf $icon_mid
[ $percent -ge $high ] && printf $icon_high