commit 61cef5aff3ff13c07dc4eba1a87070fdae01fcf1 parent b6bd2e63b3d5854b0bff5ea2097ca5a79e46b00c Author: Luke <luke@lukesmith.xyz> Date: Thu, 5 Oct 2017 02:53:46 -0700 dialog for final choices Diffstat:
M | arch.sh | | | 27 | ++++----------------------- |
1 file changed, 4 insertions(+), 23 deletions(-)
diff --git a/arch.sh b/arch.sh @@ -64,26 +64,7 @@ genfstab -U /mnt >> /mnt/etc/fstab curl http://lukesmith.xyz/larbs/chroot.sh > /mnt/chroot.sh && arch-chroot /mnt bash chroot.sh && rm /mnt/chroot.sh -echo "Eject CD/ROM? [y/N]" -read yn -case $yn in - [Yy]* ) eject ;; - [yes]* ) eject ;; - [Yes]* ) eject ;; -esac - -echo "Reboot now? [y/N]" -read yn -case $yn in - [Yy]* ) reboot ;; - [yes]* ) reboot ;; - [Yes]* ) reboot ;; -esac - -echo "Return to chroot environment? [y/N]" -read yn -case $yn in - [Yy]* ) arch-chroot /mnt ;; - [yes]* ) arch-chroot /mnt ;; - [Yes]* ) arch-chroot /mnt ;; -esac +dialog --defaultno --title "Final Qs" --yesno "Eject CD/ROM (if any)?" 5 30 && eject +dialog --defaultno --title "Final Qs" --yesno "Reboot computer?" 5 30 && reboot +dialog --defaultno --title "Final Qs" --yesno "Return to chroot environment?" 6 30 && arch-chroot /mnt +clear