diff options
Diffstat (limited to 'configs/xmobar_iostat.sh')
-rwxr-xr-x | configs/xmobar_iostat.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/configs/xmobar_iostat.sh b/configs/xmobar_iostat.sh new file mode 100755 index 0000000..662c21f --- /dev/null +++ b/configs/xmobar_iostat.sh @@ -0,0 +1,30 @@ +#!/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') + + +outio() { +local lc +lc=$(echo "$1" | cut -c $((${#1}))) +if [ $lc = "k" ]; then + echo -n '<fc=#FFFF00>' +elif [ $lc = "B" ]; then + echo -n '<fc=#00FF00>' +elif [ $lc = "M" ]; then + echo -n '<fc=#FF0000>' +else + echo -n '<fc=#FFFFFF>' +fi +echo -n "${1}</fc>" +} + +outio "${READ}" +echo -n ' | ' +outio "${WRITE}" +echo + +exit $? |