From 800258639245566611491afc80bde5c9d0aa4eff Mon Sep 17 00:00:00 2001 From: adcv <343821+xadcv@users.noreply.github.com> Date: Wed, 6 Aug 2025 13:49:46 +0200 Subject: [PATCH] small fix for theme-remove menu selection items (#505) --- bin/omarchy-theme-remove | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/omarchy-theme-remove b/bin/omarchy-theme-remove index 42cd5d3c..223ee382 100755 --- a/bin/omarchy-theme-remove +++ b/bin/omarchy-theme-remove @@ -7,7 +7,8 @@ if [ -z "$1" ]; then extra_themes=$(find ~/.config/omarchy/themes -mindepth 1 -maxdepth 1 -type d ! -xtype l -printf '%f\n') if [[ -n "$extra_themes" ]]; then - THEME_NAME=$(gum choose --header="Remove extra theme" "$extra_themes") + # THEME_NAME=$(gum choose --header="Remove extra theme" "$extra_themes") + THEME_NAME=$(echo -e "$extra_themes" | gum choose --header="Remove extra theme") else echo "No extra themes installed." exit 1