refactor(klipper): full refactor of klipper install/remove part #264

Merged
dw-0 merged 12 commits from rework-klipper-installer into master 2022-11-13 15:51:22 +01:00
Showing only changes of commit faeea4ba4e - Show all commits

View File

@@ -75,7 +75,7 @@ function start_klipper_setup() {
print_dialog_user_select_instance_count
regex="^[1-9][0-9]*$"
while [[ ! ${input} =~ ${regex} ]]; do
read -p "${cyan}###### Number of Klipper instances to set up:${white} " input
read -p "${cyan}###### Number of Klipper instances to set up:${white} " -i "1" -e input
if [[ ${input} =~ ${regex} ]]; then
instance_count="${input}"