mirror of
https://git.adityakumar.xyz/dwmbar.git
synced 2024-11-09 14:19:43 +00:00
Added cpu load module
This commit is contained in:
parent
460da853b2
commit
1fb47edc46
1 changed files with 12 additions and 0 deletions
12
modules/cpuload
Executable file
12
modules/cpuload
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Prints out the CPU load percentage
|
||||
|
||||
PREFIX=' '
|
||||
|
||||
get_load()
|
||||
{
|
||||
echo "$PREFIX$( printf "%.0f" $(awk '{u=$2+$4; t=$2+$4+$5; if (NR==1){u1=u; t1=t;} else print ($2+$4-u1) * 100 / (t-t1); }' <(grep 'cpu ' /proc/stat) <(sleep 1;grep 'cpu ' /proc/stat)) )%"
|
||||
}
|
||||
|
||||
get_load
|
Loading…
Reference in a new issue