summaryrefslogtreecommitdiff
path: root/.config/wmii-hg/rbar_cpu
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-01-06 13:18:31 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-01-06 13:18:31 -0500
commit87428a01acb77a94d35c03264d376a2ee3853664 (patch)
tree2e5483f200e321545138b99e45b023c754ece4d6 /.config/wmii-hg/rbar_cpu
parentd7128cd444fce3129a78e08fe643978fb25c3846 (diff)
wmii: re-jigger the rbar
Diffstat (limited to '.config/wmii-hg/rbar_cpu')
-rwxr-xr-x.config/wmii-hg/rbar_cpu12
1 files changed, 0 insertions, 12 deletions
diff --git a/.config/wmii-hg/rbar_cpu b/.config/wmii-hg/rbar_cpu
deleted file mode 100755
index 5531e60..0000000
--- a/.config/wmii-hg/rbar_cpu
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/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