From 0e8130b9450d54433e53b590ec0509ae4dfb8799 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Mon, 24 Nov 2025 14:19:59 +0800 Subject: [PATCH] Clearer expression --- bin/clean.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/bin/clean.sh b/bin/clean.sh index 30b5ce7..edd8002 100755 --- a/bin/clean.sh +++ b/bin/clean.sh @@ -1402,7 +1402,7 @@ perform_cleanup() { # ===== 12. Orphaned app data cleanup ===== # Only touch apps missing from scan + 60+ days inactive # Skip protected vendors, keep Preferences/Application Support - start_section "Leftover app data" + start_section "Uninstalled app data" # Check if we have permission to access Library folders # Use simple ls test instead of find to avoid hanging @@ -1576,14 +1576,11 @@ perform_cleanup() { done stop_inline_spinner - echo -e " ${GREEN}${ICON_SUCCESS}${NC} Found $orphaned_count leftover app files" if [[ $orphaned_count -gt 0 ]]; then local orphaned_mb=$(echo "$total_orphaned_kb" | awk '{printf "%.1f", $1/1024}') - echo " ${GREEN}${ICON_SUCCESS}${NC} Cleaned $orphaned_count leftover items (~${orphaned_mb}MB)" + echo " ${GREEN}${ICON_SUCCESS}${NC} Cleaned $orphaned_count items (~${orphaned_mb}MB)" note_activity - else - echo " ${GREEN}${ICON_SUCCESS}${NC} No leftover app data found" fi rm -f "$installed_bundles"