diff options
-rwxr-xr-x | joes-arch-install-UEFI.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/joes-arch-install-UEFI.sh b/joes-arch-install-UEFI.sh index 5e44b1c..1556510 100755 --- a/joes-arch-install-UEFI.sh +++ b/joes-arch-install-UEFI.sh @@ -136,7 +136,7 @@ while [[ $answr != y && $answr != Y && $answr != yes && $answr != Yes && $answr echo && echo dn=$(lsblk | grep -c disk) id=1 - lsblk | grep disk | awk '{print "\033[1;34mDISK", "", "", "SIZE""\033[0m";}{print "\033[1;34m----", "", "", "----\033[0m";}{print "\033[1;36m"$1 "\033[1;34m ->", "\033[1;33m"$4;}' + lsblk | grep disk | awk '{print "\033[1;34mDISK", " | ", "SIZE""\033[0m";}{print "\033[1;34m------+------\033[0m";}{print "\033[1;36m"$1 "\033[1;34m | ", "\033[1;33m"$4;}' echo && echo echo -e "${BCYAN}Please choose the drive on which Arch Linux shoud be installed:${END}" while [[ $dn != 0 ]]; do @@ -242,7 +242,12 @@ while [[ $answr != y && $answr != Y && $answr != yes && $answr != Yes && $answr read -r answr if [[ $answr != y && $answr != Y && $answr != yes && $answr != Yes && $answr != YES ]]; then echo && echo - ############################################################################################################## EXIT + echo -e "${BCYAN}Thank you for using Joe's Arch Linux UEFI install script.${END}" + sleep 1 + echo -e "${BRED}Aborting...${END}" + sleep 3 + clear + exit fi done #==================================================================================================# |