diff --git a/bin/clean.sh b/bin/clean.sh index 0c789b0..dede154 100755 --- a/bin/clean.sh +++ b/bin/clean.sh @@ -601,7 +601,7 @@ safe_clean() { fi if [[ "$show_spinner" == "true" || "$cleaning_spinner_started" == "true" ]]; then - stop_section_spinner + stop_inline_spinner fi local permission_end=${MOLE_PERMISSION_DENIED_COUNT:-0} diff --git a/lib/clean/dev.sh b/lib/clean/dev.sh index e3d7c44..6f441f1 100644 --- a/lib/clean/dev.sh +++ b/lib/clean/dev.sh @@ -97,7 +97,7 @@ check_multiple_versions() { if [[ -n "$list_cmd" ]]; then hint=" · ${GRAY}${list_cmd}${NC}" fi - echo -e " ${GRAY}${ICON_WARNING}${NC} ${tool_name}: ${count} found${hint}" + echo -e " ${GREEN}${ICON_SUCCESS}${NC} ${tool_name}: ${count} found${hint}" fi } diff --git a/lib/clean/user.sh b/lib/clean/user.sh index 50d8f31..a67658f 100644 --- a/lib/clean/user.sh +++ b/lib/clean/user.sh @@ -14,7 +14,7 @@ clean_user_essentials() { [[ "$trash_count" =~ ^[0-9]+$ ]] || trash_count="0" if [[ "$DRY_RUN" == "true" ]]; then - [[ $trash_count -gt 0 ]] && echo -e " ${YELLOW}${ICON_DRY_RUN}${NC} Trash · would empty, $trash_count items" || echo -e " ${GRAY}${ICON_EMPTY}${NC} Trash · already empty" + [[ $trash_count -gt 0 ]] && echo -e " ${YELLOW}${ICON_DRY_RUN}${NC} Trash · would empty, $trash_count items" || echo -e " ${GREEN}${ICON_SUCCESS}${NC} Trash · already empty" elif [[ $trash_count -gt 0 ]]; then if osascript -e 'tell application "Finder" to empty trash' > /dev/null 2>&1; then echo -e " ${GREEN}${ICON_SUCCESS}${NC} Trash · emptied, $trash_count items" @@ -23,7 +23,7 @@ clean_user_essentials() { safe_clean ~/.Trash/* "Trash" fi else - echo -e " ${GRAY}${ICON_EMPTY}${NC} Trash · already empty" + echo -e " ${GREEN}${ICON_SUCCESS}${NC} Trash · already empty" fi fi }