From 47a5bbc3ee3b1fab50ca5249a9292cfc89339871 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Thu, 15 Jun 2023 21:53:21 +0200 Subject: [PATCH] add end dialog on setup leaving --- usr/lib/archboot/installer/base.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/lib/archboot/installer/base.sh b/usr/lib/archboot/installer/base.sh index b840e3df6..5e55a54be 100644 --- a/usr/lib/archboot/installer/base.sh +++ b/usr/lib/archboot/installer/base.sh @@ -338,10 +338,10 @@ _mainmenu() { fi exit 0 elif [[ "${_ANSWER}" == "2" ]]; then - _dialog --msgbox "Reboot:\nHit 'Enter' for rebooting the system.\nDon't forget to remove the boot medium!" 10 60 + _dialog --msgbox "Reboot:\nHit 'Enter' for rebooting the system.\nDon't forget to remove the boot medium!" 8 40 reboot elif [[ "${_ANSWER}" == "3" ]]; then - _dialog --msgbox "Poweroff:\n\nHit 'Enter' for powering off the system." 9 60 + _dialog --msgbox "Poweroff:\n\nHit 'Enter' for powering off the system." 6 40 poweroff fi ;;