This commit is contained in:
deathbybandaid 2023-12-17 12:01:26 -05:00
parent d421a43281
commit ff0572c50c

View File

@ -6,7 +6,8 @@ source "$SCRIPTDIR/common/colors.sh"
source "$SCRIPTDIR/common/functions.sh" source "$SCRIPTDIR/common/functions.sh"
source "$SCRIPTDIR/common/load-defaults.sh" source "$SCRIPTDIR/common/load-defaults.sh"
#printf "$COL_LIGHT_BLUE" "* Cleaning up system" printf "$COL_LIGHT_BLUE" "* Cleaning up system"
prespace=$(get_system_used_space) prespace=$(get_system_used_space)
prespacewords=$(human_readable_bytes "$prespace") prespacewords=$(human_readable_bytes "$prespace")
printf "$COL_LIGHT_BLUE" "* Current used space is $prespacewords" printf "$COL_LIGHT_BLUE" "* Current used space is $prespacewords"
@ -14,7 +15,6 @@ printf "$COL_LIGHT_BLUE" "* Current used space is $prespacewords"
pkgmgr_clean pkgmgr_clean
postspace=$(get_system_used_space) postspace=$(get_system_used_space)
printf "$COL_LIGHT_BLUE" "* Current used space is now $postspace"
postspacewords=$(human_readable_bytes "$prespace") postspacewords=$(human_readable_bytes "$prespace")
printf "$COL_LIGHT_BLUE" "* Current used space is now $postspacewords" printf "$COL_LIGHT_BLUE" "* Current used space is now $postspacewords"