diff options
Diffstat (limited to '.config/wmii-hg/rbar_cpu')
-rwxr-xr-x | .config/wmii-hg/rbar_cpu | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/wmii-hg/rbar_cpu b/.config/wmii-hg/rbar_cpu new file mode 100755 index 0000000..5531e60 --- /dev/null +++ b/.config/wmii-hg/rbar_cpu @@ -0,0 +1,12 @@ +#!/bin/bash +. include.sh + +priority=$1 + +while connected_to_x_server; do + # This doesn't work for me, it shows capacity + #echo -n 'Core MHz:' $(cat /proc/cpuinfo | grep 'cpu MHz' | sed 's/.*: //g; s/\..*//g;') >> "$WMII_DIR/rbar/${priority}_cpu" + # This actually displays %idle + echo 'label CPU: [ '$(tail -n3 ~/tmp/cputime|sed -ur 's/\s\s+/\t/g'|cut -f2,11|sed 's/\t\(.*\)/(\1)/')' ]' >> "$WMII_DIR/rbar/${priority}_cpu" + sleep 1 +done |