From 33065198fb9eed8938c189f6f87f6c15edd52fe6 Mon Sep 17 00:00:00 2001 From: toni Date: Sun, 17 May 2015 20:28:21 +0200 Subject: fixed msi stuff, added io usage --- configs/xmobar_iostat_msi.sh | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 configs/xmobar_iostat_msi.sh (limited to 'configs/xmobar_iostat_msi.sh') diff --git a/configs/xmobar_iostat_msi.sh b/configs/xmobar_iostat_msi.sh new file mode 100755 index 0000000..efcd1fe --- /dev/null +++ b/configs/xmobar_iostat_msi.sh @@ -0,0 +1,35 @@ +#!/bin/sh + +OUT=$(dstat -dD total --noheaders --noupdate --integer 1 1 | tail -n 1) +# | sed -n 's/^\s*\([0-9]*[[:alpha:]]*\).*$/__\1___/p' + +READ=$(echo $OUT | sed -n 's/^\s*\([0-9]*[[:alpha:]]*\).*$/\1/p') +WRITE=$(echo $OUT | sed -n 's/^\s*[0-9]*[[:alpha:]]*\s*\([0-9]*[[:alpha:]]*\)$/\1/p') +BAT=$(cat /sys/class/power_supply/ADP1/online) + + +outio() { +local lc +if [ $BAT -ne 1 ]; then + echo "[DISABLED]" + exit 0 +fi +lc=$(echo "$1" | cut -c $((${#1}))) +if [ $lc = "k" ]; then + echo -n '' +elif [ $lc = "B" ]; then + echo -n '' +elif [ $lc = "M" ]; then + echo -n '' +else + echo -n '' +fi +echo -n "${1}" +} + +outio "${READ}" +echo -n ' | ' +outio "${WRITE}" +echo + +exit $? -- cgit v1.2.3