From 51830d5ce1f58c28b6bb9990c6848e3476f63604 Mon Sep 17 00:00:00 2001 From: Kent Keirsey Date: Tue, 26 Aug 2025 00:08:10 -0400 Subject: [PATCH] Change removal selection icons --- bin/omarchy-webapp-remove | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-webapp-remove b/bin/omarchy-webapp-remove index ceb9bca9..07e1a333 100755 --- a/bin/omarchy-webapp-remove +++ b/bin/omarchy-webapp-remove @@ -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