diff options
author | toni <matzeton@googlemail.com> | 2014-10-17 20:02:05 +0200 |
---|---|---|
committer | toni <matzeton@googlemail.com> | 2014-10-17 20:02:05 +0200 |
commit | 8821ff4ea8e1c06954dc5ea2604ed6785652af47 (patch) | |
tree | f0a9889e1156bcba4f38726704a573a03c5789a3 /configs | |
parent | 2e711ffd257dd2ef1d40dbc30b74a30f48637911 (diff) |
replaced iostat with iotop (iostat gives false results)
Diffstat (limited to 'configs')
-rwxr-xr-x | configs/xmobar_hddusage.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/xmobar_hddusage.sh b/configs/xmobar_hddusage.sh index e8285e4..bea8391 100755 --- a/configs/xmobar_hddusage.sh +++ b/configs/xmobar_hddusage.sh @@ -1,9 +1,9 @@ #!/bin/bash if [ "x$1" = "xread" ]; then - OUT=$(iostat | sed -n 's/sda\s*[0-9,]*\s*\([0-9]*\).*$/\1/p') + OUT=$(sudo iotop -b -n 1 -P -k -qq | sed -n 's/^Total DISK READ:\s*\([0-9]*\)\..*$/\1/p') elif [ "x$1" = "xwrite" ]; then - OUT=$(iostat | sed -n 's/sda\s*[0-9,]*\s*[0-9,]*\s*\([0-9]*\).*$/\1/p') + OUT=$(sudo iotop -b -n 1 -P -k -qq | sed -n 's/^.*Total DISK WRITE:\s*\([0-9]*\)\..*$/\1/p') else exit 1 fi |