From 6994527c19c234499325497d71d3d1c27171a35e Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 27 Aug 2023 21:28:50 +0200 Subject: [PATCH] rephrase skipping dialogs --- usr/lib/archboot/installer/quicksetup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/quicksetup.sh b/usr/lib/archboot/installer/quicksetup.sh index 3fe9e54b7..628637b31 100644 --- a/usr/lib/archboot/installer/quicksetup.sh +++ b/usr/lib/archboot/installer/quicksetup.sh @@ -281,7 +281,7 @@ _autoprepare() { _ROOTDEV_NUM="$((_DEV_NUM+1))" _DEV_NUM="${_ROOTDEV_NUM}" while [[ -z "${_ROOTDEV_SET}" ]]; do - _dialog --title " / in MiB " --inputbox "Disk space left: $((_DISK_SIZE-350))M | Minimum value is 2000\nValue 0 skips /home and uses the left ${_DISK_SIZE}M for /" 9 70 "${_ROOT_SIZE}" 2>"${_ANSWER}" || return 1 + _dialog --title " / in MiB " --inputbox "Disk space left: $((_DISK_SIZE-350))M | Minimum value is 2000\nValue 0 skips /home and uses the left ${_DISK_SIZE}M for /" 9 55 "${_ROOT_SIZE}" 2>"${_ANSWER}" || return 1 _ROOTDEV_SIZE=$(cat "${_ANSWER}") if [[ "${_ROOTDEV_SIZE}" == 0 ]]; then if _dialog --yesno "${_DISK_SIZE}M will be used for your / partition. Is this OK?" 0 0; then