aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2019-11-18 11:31:37 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2019-11-18 11:31:37 +0100
commit8b212a6e571cb1a676d576466601f9b4bf10ff38 (patch)
treea77369fda3fc04d2a0462ee1bf82a54eb6588abf
parentCorrected colors mistake (diff)
downloadarch-installer-8b212a6e571cb1a676d576466601f9b4bf10ff38.tar.gz
arch-installer-8b212a6e571cb1a676d576466601f9b4bf10ff38.tar.bz2
arch-installer-8b212a6e571cb1a676d576466601f9b4bf10ff38.tar.xz
arch-installer-8b212a6e571cb1a676d576466601f9b4bf10ff38.tar.zst
arch-installer-8b212a6e571cb1a676d576466601f9b4bf10ff38.zip
Few colors
-rwxr-xr-xjoes-arch-install-UEFI.sh26
1 files changed, 13 insertions, 13 deletions
diff --git a/joes-arch-install-UEFI.sh b/joes-arch-install-UEFI.sh
index 7437b40..633021f 100755
--- a/joes-arch-install-UEFI.sh
+++ b/joes-arch-install-UEFI.sh
@@ -47,8 +47,8 @@ END="\033[0;0m"
#==================================================================================================#
clear
-echo -e "\
-${BMAGENTA}#============ WELCOME ============#
+echo -e "${BMAGENTA}\
+#============ WELCOME ============#
# #
# ${BYELLOW}Welcome to Joe's ${BMAGENTA}#
# ${BYELLOW}ARCH LINUX ${BMAGENTA}#
@@ -65,7 +65,7 @@ read -r
if [ ! -r /sys/firmware/efi/efivars ]; then
clear
- echo "\
+ echo -e "${BRED}\
X=X=X=X=X=X=X ERROR X=X=X=X=X=X=X=X
X X
X It seems that boot mode X
@@ -73,24 +73,24 @@ X is not set to UEFI X
X therefore Joe's script is X
X forced to abort X
X X
-X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X"
+X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X${END}"
sleep 6
echo && echo
- echo "Thank you for using Joe's Arch Linux UEFI install script."
+ echo "${BMAGENTA}Thank you for using Joe's Arch Linux UEFI install script.${END}"
sleep 1
- echo "Aborting..."
+ echo "${BRED}Aborting...${END}"
sleep 3
clear
exit
fi
clear
-echo "Verifying that your are connected to the Internet, please wait..."
+echo "${BBLUE}Verifying that your are connected to the Internet, please wait...${END}"
wget -q --spider https://archlinux.org > /dev/null
tmpret=$?
if [ $tmpret -ne 0 ]; then
clear
- echo "\
+ echo "${BRED}\
X=X=X=X=X=X=X ERROR X=X=X=X=X=X=X=X
X X
X It seems that your X
@@ -99,19 +99,19 @@ X connected to the Internet X
X therefore Joe's script is X
X forced to abort X
X X
-X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X"
+X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X=X${END}"
sleep 6
echo && echo
- echo "Thank you for using Joe's Arch Linux UEFI install script."
+ echo "${BMAGENTA}Thank you for using Joe's Arch Linux UEFI install script.${END}"
sleep 1
- echo "Aborting..."
+ echo "${BRED}Aborting...${END}"
sleep 3
clear
exit
else
- echo "Success!"
+ echo "${BGREEN}Success!${END}"
echo
- echo "Press [retrun] key to continue"
+ echo "${BMAGENTA}Press [retrun] key to continue${END}"
read -r
fi