aboutsummaryrefslogtreecommitdiff
path: root/configs/xmobar_hddusage.sh
diff options
context:
space:
mode:
Diffstat (limited to 'configs/xmobar_hddusage.sh')
-rwxr-xr-xconfigs/xmobar_hddusage.sh12
1 files changed, 12 insertions, 0 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