diff options
author | InigoGutierrez <inigogf.95@gmail.com> | 2019-10-29 19:49:18 +0100 |
---|---|---|
committer | InigoGutierrez <inigogf.95@gmail.com> | 2019-10-29 19:49:18 +0100 |
commit | 87e77d74b76a82c55cd5269f90d6f3f6b94a60d7 (patch) | |
tree | d63ab81c3c44e4b0d257be83504366de2771528c | |
parent | 0cb59b46e890a86e67133fdc561671fa5b371d6f (diff) | |
download | scripts-87e77d74b76a82c55cd5269f90d6f3f6b94a60d7.tar.gz scripts-87e77d74b76a82c55cd5269f90d6f3f6b94a60d7.zip |
3idisk.sh now shows filled instead of empty.
-rwxr-xr-x | i3blocks/i3disk.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i3blocks/i3disk.sh b/i3blocks/i3disk.sh index 6fc5cb6..a1aae81 100755 --- a/i3blocks/i3disk.sh +++ b/i3blocks/i3disk.sh @@ -8,4 +8,4 @@ case $BLOCK_BUTTON in $home" ;; esac -df -h | grep "/home$" | awk '{print $4"/"$2}' +df -h | grep "/home$" | awk '{print $3"/"$2}' |