1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 15:04:42 +00:00

feat(clean): add large file review and unify warnings

This commit is contained in:
Tw93
2026-01-22 20:15:13 +08:00
parent 9d824d0ad2
commit cde39aaeb2
5 changed files with 113 additions and 82 deletions

View File

@@ -332,7 +332,7 @@ batch_uninstall_applications() {
while IFS= read -r file; do
if [[ -n "$file" && -e "$file" ]]; then
if [[ $sys_file_count -lt $max_files ]]; then
echo -e " ${BLUE}${ICON_SOLID}${NC} System: $file"
echo -e " ${BLUE}${ICON_WARNING}${NC} System: $file"
fi
((sys_file_count++))
fi