Change removal selection icons

This commit is contained in:
Kent Keirsey 2025-08-26 00:08:10 -04:00
parent acc1e2f757
commit 51830d5ce1

View File

@ -14,7 +14,7 @@ if [ "$#" -eq 0 ]; then
if ((${#WEB_APPS[@]})); then
IFS=$'\n' SORTED_WEB_APPS=($(sort <<<"${WEB_APPS[*]}"))
unset IFS
APP_NAMES=$(gum choose --no-limit --header "Select web app to remove..." "${SORTED_WEB_APPS[@]}")
APP_NAMES=$(gum choose --no-limit --header "Select web app to remove..." --selected-prefix="✗ " --cursor-prefix=" " "${SORTED_WEB_APPS[@]}")
else
echo "No web apps to remove."
exit 1