aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2019-11-19 09:26:15 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2019-11-19 09:26:15 +0100
commit354bd3b89735a29bc606a7f2bca7603e4165fe6a (patch)
tree709dfc0edf3abc87b36fba0fd548ba2012d544d8
parentNice cool table for disks list now (diff)
downloadarch-installer-354bd3b89735a29bc606a7f2bca7603e4165fe6a.tar.gz
arch-installer-354bd3b89735a29bc606a7f2bca7603e4165fe6a.tar.bz2
arch-installer-354bd3b89735a29bc606a7f2bca7603e4165fe6a.tar.xz
arch-installer-354bd3b89735a29bc606a7f2bca7603e4165fe6a.tar.zst
arch-installer-354bd3b89735a29bc606a7f2bca7603e4165fe6a.zip
Some more colors
-rwxr-xr-xjoes-arch-install-UEFI.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/joes-arch-install-UEFI.sh b/joes-arch-install-UEFI.sh
index 1556510..ee4168f 100755
--- a/joes-arch-install-UEFI.sh
+++ b/joes-arch-install-UEFI.sh
@@ -258,28 +258,28 @@ answr="n"
while [[ $rtrtpwd != "$rtpwd" || $rtpwd == "" ]]; do
clear
- echo "\
+ echo -e "${BMAGENTA}\
#======= II. USERS SETUP =========#
# #
# 1. root password #
# #
-#=================================#"
+#=================================#${END}"
echo && echo
- echo "Enter your disired root password (can't be empty):"
- echo -n "> "
+ echo -e "${BCYAN}Enter your disired root password (can't be empty):"
+ echo -n -e "${BCYAN}> "
read -r -s rtpwd
echo && echo
- echo "Confirm root password:"
- echo -n "> "
+ echo -e "${BCYAN}Confirm root password:"
+ echo -n -e "${BCYAN}> "
read -r -s rtrtpwd
if [[ $rtrtpwd != "$rtpwd" ]]; then
echo && echo
- echo "Password mismatch, retrying..."
+ echo -e "${BRED}Password mismatch, retrying...${END}"
sleep 2
fi
if [[ $rtpwd = "" ]]; then
echo && echo
- echo "Password is empty, retrying..."
+ echo -e "${BRED}Password is empty, retrying...${END}"
sleep 2
fi
done