diff --git a/rc/bashrc b/rc/bashrc index 5aeb3e77..786c6fbd 100755 --- a/rc/bashrc +++ b/rc/bashrc @@ -161,7 +161,7 @@ if hash lsb_release 2> /dev/null; then fi printf "\n" - df / $HOME --human-readable --output=source,fstype,size,used,avail,pcent | uniq + df / $HOME --human-readable --output=source,fstype,size,used,avail,pcent | grep -v overlay | uniq unset LC_ALL ) diff --git a/rc/zshrc b/rc/zshrc index a0b08d55..98ab5bd2 100755 --- a/rc/zshrc +++ b/rc/zshrc @@ -57,7 +57,7 @@ if hash lsb_release 2> /dev/null; then last --hostlast --present $(date +%R) --fullnames --system --time-format notime fi printf "\n" - df / $HOME --human-readable --output=source,fstype,size,used,avail,pcent | uniq + df / $HOME --human-readable --output=source,fstype,size,used,avail,pcent | grep -v overlay | uniq unset LC_ALL )