From 0e88962e4fcab147edfce4fe533cca33b0a680ac Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 26 Aug 2025 09:14:14 +0200 Subject: [PATCH] Bring multi-select and custom X remover to TUI --- bin/omarchy-tui-remove | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-tui-remove b/bin/omarchy-tui-remove index 47ef7c27..05e89c13 100755 --- a/bin/omarchy-tui-remove +++ b/bin/omarchy-tui-remove @@ -14,7 +14,7 @@ if [ "$#" -ne 1 ]; then if ((${#TUIS[@]})); then IFS=$'\n' SORTED_TUIS=($(sort <<<"${TUIS[*]}")) unset IFS - APP_NAME=$(gum choose --header "Select TUI to remove..." "${SORTED_TUIS[@]}") + APP_NAME=$(gum choose --no-limit --header "Select TUI to remove..." --selected-prefix="✗ " "${SORTED_TUIS[@]}") else echo "No TUIs to remove." exit 1