1
0
Fork 0

sb-disk: decrease output length

This commit is contained in:
Luca Bilke 2024-07-23 20:45:32 +02:00
parent e63fd0fbe4
commit f32efeaee1

View file

@ -7,9 +7,15 @@ types=${SB_DISK_FS:-ext2,ext3,ext4,xfs,btrfs,vfat}
first=true
for mnt in $(findmnt -Py -t "$types"); do
eval "$mnt"
[ "$TARGET" = "/var/lib/docker" ] && break
$first || printf " | "
printf "%b" "${TARGET}: $(df -h "$TARGET" | awk ' /[0-9]/ {print $3 "/" $2}')"
case "$TARGET" in
/var/lib/docker) break ;;
/) icon="󰙅" ;;
/home) icon="󰋜" ;;
/boot*) icon="󰐥" ;;
*) icon="" ;;
esac
$first || printf " "
echo "${icon} $(df -h "$TARGET" | awk ' /[0-9]/ {print $3 "/" $2}')"
first=false
done
printf "\n"