diff options
author | toni <matzeton@googlemail.com> | 2014-10-09 12:49:30 +0200 |
---|---|---|
committer | toni <matzeton@googlemail.com> | 2014-10-09 12:49:30 +0200 |
commit | ebcc153211e95eb6c8ad008577095fcbd18f7a2e (patch) | |
tree | 318b0c24c2c22c40a8e510022aecd3d1bdd3e7ff /configs | |
parent | a8b21a7ba80729348141c9539cb89d7b82f798aa (diff) |
xmobarrc: hddusage
Diffstat (limited to 'configs')
-rwxr-xr-x | configs/xmobar_hddusage.sh | 12 | ||||
-rw-r--r-- | configs/xmobarrc | 4 |
2 files changed, 15 insertions, 1 deletions
diff --git a/configs/xmobar_hddusage.sh b/configs/xmobar_hddusage.sh new file mode 100755 index 0000000..9185f9f --- /dev/null +++ b/configs/xmobar_hddusage.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +HDD="sda" + +NOUT=$(iostat | tr -s ' ' | grep -E '^(sd|hd)') +if [ "x$1" = "xread" ]; then + OUT=$(echo "$NOUT" | grep $HDD | cut -d ' ' -f 3) +elif [ "x$1" = "xwrite" ]; then + OUT=$(echo "$NOUT" | grep $HDD | cut -d ' ' -f 4) +fi +echo "${OUT}" +exit 0 diff --git a/configs/xmobarrc b/configs/xmobarrc index a15e566..36c2f31 100644 --- a/configs/xmobarrc +++ b/configs/xmobarrc @@ -4,7 +4,9 @@ Config { font = "-misc-fixed-*-*-*-*-18-*-*-*-*-*-*-*" , borderColor = "black" , fgColor = "grey" , position = TopW L 100 - , commands = [ Run Com "~/.xmobar_gputemp.sh" ["GPU"] "gtmp" 10 + , commands = [ Run Com "~/.xmobar_hddusage.sh" ["IO_R"] "read" 10 + , Run Com "~/.xmobar_hddusage.sh" ["IO_W"] "write" 10 + , Run Com "~/.xmobar_gputemp.sh" ["GPU"] "gtmp" 10 , Run Com "~/.xmobar_cputemp.sh" ["CPU"] "ctmp" 10 , Run Com "~/.xmobar_cputemp.sh" ["MB"] "mtmp" 10 , Run Network "eth0" ["-L","0","-H","32","--normal","green","--high","red"] 10 |