diff --git a/usr/lib/archboot/installer/base.sh b/usr/lib/archboot/installer/base.sh index 2919896f0..da28e3949 100644 --- a/usr/lib/archboot/installer/base.sh +++ b/usr/lib/archboot/installer/base.sh @@ -163,7 +163,7 @@ _configure_system() { fi #shellcheck disable=SC2086 _dialog --title " System Configuration " --no-cancel ${_DEFAULT} --menu "" 19 60 13 \ - "==> User Management" "User Configuration" \ + "> User Management" "User Configuration" \ "/etc/vconsole.conf" "Virtual Console" \ "/etc/locale.conf" "Locale Setting" \ "/etc/locale.gen" "Glibc Locales" \ @@ -175,9 +175,9 @@ _configure_system() { "/etc/hosts" "Network Hosts" \ "/etc/pacman.d/mirrorlist" "Pacman Mirrors" \ "/etc/pacman.conf" "Pacman Config" \ - "<== Back" "Return to Main Menu" 2>"${_ANSWER}" || break + "< Back" "Return to Main Menu" 2>"${_ANSWER}" || break _FILE="$(cat "${_ANSWER}")" - if [[ "${_FILE}" = "<== Back" || -z "${_FILE}" ]]; then + if [[ "${_FILE}" = "< Back" || -z "${_FILE}" ]]; then _S_CONFIG=1 break elif [[ "${_FILE}" = "/etc/mkinitcpio.conf" ]]; then diff --git a/usr/lib/archboot/installer/configuration.sh b/usr/lib/archboot/installer/configuration.sh index fba1ca634..14386ee56 100644 --- a/usr/lib/archboot/installer/configuration.sh +++ b/usr/lib/archboot/installer/configuration.sh @@ -112,7 +112,7 @@ _user_management() { "1" "Set Default Shell" \ "2" "Add User" \ "3" "Modify User" \ - "4" "Return to System Configuration" 2>"${_ANSWER}" || break + "<" "Return to System Configuration" 2>"${_ANSWER}" || break _FILE="$(cat "${_ANSWER}")" if [[ "${_FILE}" = "1" ]]; then _dialog --title " Default Shell " --no-cancel --menu "" 8 45 2 \ @@ -172,7 +172,7 @@ _user_management() { "1" "Change Password" \ "2" "Change Comment" \ "3" "Delete User" \ - "4" "Return To User Selection" 2>"${_ANSWER}" || return 1 + "<" "Return To User Selection" 2>"${_ANSWER}" || return 1 _USER_ACTION=$(cat "${_ANSWER}") if [[ "${_USER_ACTION}" = 1 ]]; then _set_password User "${_USER}" @@ -186,7 +186,7 @@ _user_management() { fi done _NEXTITEM=4 - elif [[ "${_FILE}" = "4" ]]; then + elif [[ "${_FILE}" = "<" ]]; then _NEXTITEM=3 break fi