From c5a57fe277032edb5f5f9f92c8b71df1ebed14bb Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Wed, 4 Feb 2026 08:33:50 +0200 Subject: [PATCH] {bash,zsh}rc: very lazy kinoite df improvement --- rc/bashrc | 2 +- rc/zshrc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 )