This commit is contained in:
deathbybandaid 2023-12-17 11:33:49 -05:00
parent 9e9b913949
commit 6d4f3808e6

View File

@ -75,7 +75,7 @@ pkgmgr_update(){
get_system_used_space() { get_system_used_space() {
usedspace=$(df --output=used -B1 / | tail -n 1| cut -d'%' -f1) usedspace=$(df --output=used -B1 / | tail -n 1| cut -d'%' -f1)
printf "$COL_RED" "$usedspace" printf "$COL_RED" "$usedspace"
return $usedspace echo $usedspace
} }
human_readable_bytes() { human_readable_bytes() {