diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-18 22:51:32 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-18 22:51:32 +0100 |
commit | e6d987836a63895e2ed30414d1442eee5c8f6b3f (patch) | |
tree | 12ff992d5cff8767005fd62c4a914b6a68c43715 | |
parent | more colors (diff) | |
download | arch-installer-e6d987836a63895e2ed30414d1442eee5c8f6b3f.tar.gz arch-installer-e6d987836a63895e2ed30414d1442eee5c8f6b3f.tar.bz2 arch-installer-e6d987836a63895e2ed30414d1442eee5c8f6b3f.tar.xz arch-installer-e6d987836a63895e2ed30414d1442eee5c8f6b3f.tar.zst arch-installer-e6d987836a63895e2ed30414d1442eee5c8f6b3f.zip |
Even more colors
-rwxr-xr-x | joes-arch-install-UEFI.sh | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/joes-arch-install-UEFI.sh b/joes-arch-install-UEFI.sh index 904eb23..91c6d26 100755 --- a/joes-arch-install-UEFI.sh +++ b/joes-arch-install-UEFI.sh @@ -138,55 +138,55 @@ while [[ $answr != y && $answr != Y && $answr != yes && $answr != Yes && $answr 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;}' echo && echo - echo -e "${BMAGENTA}Please choose the drive on which Arch Linux shoud be installed:${END}" + echo -e "${BBLUE}Please choose the drive on which Arch Linux shoud be installed:${END}" while [[ $dn != 0 ]]; do - echo "$id. $(lsblk | grep disk | awk '{print $1}' | sed -n "$id"p)" + echo -e "${BYELLOW}$id. $(lsblk | grep disk | awk '{print "\033[1;36m"$1"\033[0m";}' | sed -n "$id"p)" ((dn--)) ((id++)) done - echo -n -e "${BYELLOW}> " + echo -n "> " read -r drvnm if [[ $drvnm == "" ]]; then echo && echo - echo "Can't be empty, retrying..." + echo -e "${BRED}Can't be empty, retrying...${END}" fi if [[ $drvnm -gt $(lsblk | grep -c disk) ]]; then echo && echo - echo "Illegal value, please choose something reasonable. Retrying..." + echo -e "${BRED}Illegal value, please choose something reasonable. Retrying...${END}" fi if [[ $drvnm -lt 0 ]]; then echo && echo - echo "Illegal value, please choose something reasonable. Retrying..." + echo -e "${BRED}Illegal value, please choose something reasonable. Retrying...${END}" fi if [[ $drvnm == 0 ]]; then echo && echo - echo "Illegal value, please choose something reasonable. Retrying..." + echo -e "${BRED}Illegal value, please choose something reasonable. Retrying...${END}" fi done drv="/dev/"$(lsblk | grep disk | awk '{print $1}' | sed -n "$drvnm"p) clear - echo "\ + echo -e "${BMAGENTA}\ #========= I. DISK SETUP =========# # # # Please choose wisely # # # # 2. swap partion size # # # -#=================================#" +#=================================#${END}" while [[ $swps == "" ]]; do echo && echo - echo "\ + echo -e "${BBLUE}\ Please enter your swap partition disired size: _G" echo -n "> " read -r swps if [[ $swps == "" ]]; then echo && echo - echo "Can't be empty, retrying..." + echo -e "${BRED}Can't be empty, retrying...${END}" fi done clear - echo "\ + echo -e "${BMAGENTA}\ #========= I. DISK SETUP =========# # # # Please choose wisely # @@ -196,31 +196,31 @@ _G" #=================================#" while [[ $rts == "" ]]; do echo && echo - echo "\ + echo -e "${BBLUE}\ Please enter your root partition disired size: __G" echo -n "> " read -r rts if [[ $rts == "" ]]; then echo && echo - echo "Can't be empty, retrying..." + echo -e "${BRED}Can't be empty, retrying...${END}" fi done btsze="128M" rtsze=$rts"G" swpsze=$swps"G" clear - echo "\ + echo -e "${BMAGENTA}\ #============= CONFIRM THIS IS CORRECT ===============# # # -# DRIVE TO USE: $drv # +# DRIVE TO USE: ${BYELLOW}$drv ${BMAGENTA}# # # -# /boot/efi > BOOT partition size: $btsze # -# SWAP partition size: $swpsze # -# / > ROOT partition size: $rtsze # -# /home > HOME partition size: all that remains # +# /boot/efi > BOOT partition size: ${BYELLOW}$btsze ${BMAGENTA}# +# SWAP partition size: ${BYELLOW}$swpsze ${BMAGENTA}# +# / > ROOT partition size: ${BYELLOW}$rtsze ${BMAGENTA}# +# /home > HOME partition size: ${BYELLOW}all that remains ${BMAGENTA}# # # -#=====================================================#" +#=====================================================#${END}" echo && echo echo "Is that correct? [y/N]" echo -n "> " |