diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 15:19:54 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 15:19:54 -0500 |
commit | ee4151300e1e2eba01aecfb8da50e3dcb581a8c4 (patch) | |
tree | 0184fbc55fd92c2b173161c2281d1e8f3e89fcf7 | |
parent | 11146d2ca0de2864033b78a99fdec03663873757 (diff) |
Use intense colors for indented messages.
-rw-r--r-- | insidechroot.sh | 4 | ||||
-rw-r--r-- | preparechroot.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/insidechroot.sh b/insidechroot.sh index 91f75c9..6e01ccf 100644 --- a/insidechroot.sh +++ b/insidechroot.sh @@ -10,7 +10,7 @@ printf "%b" "${CYN}SUCCESSFULLY ENTERED ${RED}CHROOT${RST}!\n" if [ "${CHAPTER}" -eq 7 ]; then printf "%b" "${GRN}Creating directories...${RST}\n" if [ -f /sources/createdirs ]; then - printf "%b" "${GRN} Directories already created.${RST}\n" + printf "%b" "${IGRN} Directories already created.${RST}\n" else mkdir -p /boot mkdir -p /home @@ -89,7 +89,7 @@ if [ "${CHAPTER}" -eq 7 ]; then printf "%b" "${GRN}Creating essential files and symbolic links... ${RST}\n" if [ -f "/sources/essential" ]; then - printf "%b" " ${GRN}Essential files and symbolic links already created.${RST}\n" + printf "%b" " ${IGRN}Essential files and symbolic links already created.${RST}\n" else ln -sf /proc/self/mounts /etc/mtab echo "127.0.0.1 localhost $(hostname)" > /etc/hosts diff --git a/preparechroot.sh b/preparechroot.sh index 1d05e72..32f6558 100644 --- a/preparechroot.sh +++ b/preparechroot.sh @@ -5,7 +5,7 @@ source colors.sh export LFS="$1" if [ -f chrootprepared ]; then - printf "%b" "${RED}CHROOT ${GRN}already prepared...\n${RST}" + printf "%b" " ${IRED}CHROOT ${IGRN}already prepared...\n${RST}" exit 0 fi |