Disk: [macOS] Use -P

This commit is contained in:
Dylan Araps 2016-12-17 00:03:58 +11:00
parent 265e14b151
commit 868d8c2d8e

View file

@ -1539,20 +1539,20 @@ get_term_font() {
get_disk() {
type -p df >/dev/null 2>&1 || { err "Disk requires 'df' to function. Install 'df' to get disk info."; return; }
# Get the info for /
disks=($(df -h /)) || { err "Disk: 'df' exited with error code 1"; return; }
# Split the info
case "$os" in
"Haiku") return ;;
"Mac OS X") ;;
*)
disk_used="${disks[9]}"
disk_total="${disks[8]}"
disk_total_per="(${disks[11]})"
;;
"Mac OS X") df_flags=(-P -h /) ;;
*) df_flags=(-h /) ;;
esac
# Get the info for /
disks=($(df "${df_flags[@]}")) || { err "Disk: 'df' exited with error code 1"; return; }
disk_used="${disks[9]}"
disk_total="${disks[8]}"
disk_total_per="(${disks[11]})"
# Put it all together
disk="${disk_used} / ${disk_total} ${disk_total_per}"