From 7af6a851a086a2aa49ab04cb4666655f1c0276a5 Mon Sep 17 00:00:00 2001 From: Tomi Eckert Date: Wed, 10 Sep 2025 12:13:59 +0200 Subject: [PATCH] fix installer menu --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index a3cca23..5747cbe 100644 --- a/install.sh +++ b/install.sh @@ -103,7 +103,8 @@ options+=("Quit") # Add a Quit option to the menu. PS3="Please enter your choice: " # Display the menu and handle user input. -select choice_with_status in "${options[@]}"; do +# Setting COLUMNS=1 forces the select menu to display vertically. +COLUMNS=1 select choice_with_status in "${options[@]}"; do # Strip the status message from the choice for key lookup choice=$(echo "${choice_with_status}" | sed 's/ (.*//') @@ -180,3 +181,4 @@ select choice_with_status in "${options[@]}"; do ;; esac done +