{bash,zsh}rc: initial btrfs filesystem df /var/home

This commit is contained in:
Aminda Suomalainen 2026-05-14 23:20:01 +03:00
parent ecca1a097b
commit 25d5ba6d33
Signed by: Mikaela
GPG Key ID: 99392F62BAE30723
2 changed files with 10 additions and 0 deletions

View File

@ -161,6 +161,11 @@ if hash lsb_release 2> /dev/null; then
fi
printf "\n"
if [ -d /var/home/ ]; then
echo
btrfs filesystem df --iec /var/home/
echo
fi
df / $HOME --human-readable --output=source,fstype,size,used,avail,pcent | grep -v overlay | uniq
unset LC_ALL
)

View File

@ -57,6 +57,11 @@ if hash lsb_release 2> /dev/null; then
last --hostlast --present $(date +%R) --fullnames --system --time-format notime
fi
printf "\n"
if [ -d /var/home/ ]; then
echo
btrfs filesystem df --iec /var/home/
echo
fi
df / $HOME --human-readable --output=source,fstype,size,used,avail,pcent | grep -v overlay | uniq
unset LC_ALL
)