From 7a0fa0745456a09605f71285fb111a7d1bfc96b2 Mon Sep 17 00:00:00 2001 From: Dmytro Budnyk Date: Sun, 9 Nov 2025 08:50:36 +0200 Subject: [PATCH] Update icon URL placeholder to accept SVG format (#3253) SVGs work just fine, changing misleading caption --- bin/omarchy-tui-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-tui-install b/bin/omarchy-tui-install index 916db654..94143f03 100755 --- a/bin/omarchy-tui-install +++ b/bin/omarchy-tui-install @@ -5,7 +5,7 @@ if [ "$#" -ne 4 ]; then APP_NAME=$(gum input --prompt "Name> " --placeholder "My TUI") APP_EXEC=$(gum input --prompt "Launch Command> " --placeholder "lazydocker or bash -c 'dust; read -n 1 -s'") WINDOW_STYLE=$(gum choose --header "Window style" float tile) - ICON_URL=$(gum input --prompt "Icon URL> " --placeholder "See https://dashboardicons.com (must use PNG!)") + ICON_URL=$(gum input --prompt "Icon URL> " --placeholder "See https://dashboardicons.com (must use PNG or SVG!)") else APP_NAME="$1" APP_EXEC="$2"