1
0
mirror of https://github.com/tw93/Mole.git synced 2026-03-24 15:45:07 +00:00

refactor(ui): unify action and list hints across commands

This commit is contained in:
tw93
2026-02-23 11:34:22 +08:00
parent 3112673ed3
commit 4c9a71315f
5 changed files with 36 additions and 35 deletions

View File

@@ -56,9 +56,9 @@ manage_purge_paths() {
for path in "${PURGE_SEARCH_PATHS[@]}"; do
local display_path="${path/#$HOME/~}"
if [[ -d "$path" ]]; then
echo -e " ${GREEN}${NC} $display_path"
echo -e " ${GREEN}${ICON_SUCCESS}${NC} $display_path"
else
echo -e " ${GRAY}${NC} $display_path${GRAY}, not found${NC}"
echo -e " ${GRAY}${ICON_EMPTY}${NC} $display_path${GRAY}, not found${NC}"
fi
done
fi