adjust box sizes

This commit is contained in:
Tobias Powalowski 2023-01-24 15:41:52 +01:00
parent ed48284e53
commit a6ff105e70
2 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ _autoprepare() {
_set_device_name_scheme || return 1
fi
if [[ -n "${_GUIDPARAMETER}" ]]; then
_dialog --menu "Select the mountpoint of your\nEfi System Partition (ESP) on ${_DEV}:" 10 50 7 /efi _ /boot _ 2>"${_ANSWER}" || return 1
_dialog --menu "Select the mountpoint of your\nEfi System Partition (ESP) on ${_DEV}:" 10 40 7 /efi _ /boot _ 2>"${_ANSWER}" || return 1
_UEFISYS_MP=$(cat "${_ANSWER}")
fi
if [[ "${_UEFISYS_MP}" == "/boot" ]]; then

View file

@ -181,9 +181,9 @@ _mountpoints() {
if [[ -n "${_DO_ROOT}" ]]; then
_dialog --menu "Select the device to mount as /:" 15 50 12 ${_DEVS} 2>"${_ANSWER}" || return 1
elif [[ -n "${_DO_UEFISYSDEV}" ]]; then
_dialog --menu "Select the device to mount as\nEfi System Partition (ESP):" 15 50 12 ${_DEVS} 2>"${_ANSWER}" || return 1
_dialog --menu "Select the device to mount as\nEfi System Partition (ESP):" 15 40 12 ${_DEVS} 2>"${_ANSWER}" || return 1
else
_dialog --menu "Select any additional devices to mount\nunder your new root:" 15 52 12 ${_DEVS} DONE _ 2>"${_ANSWER}" || return 1
_dialog --menu "Select any additional devices to mount\nunder your new root:" 15 40 12 ${_DEVS} DONE _ 2>"${_ANSWER}" || return 1
fi
_DEV=$(cat "${_ANSWER}")
if [[ "${_DEV}" != "DONE" ]]; then