🐛 Fixed logo path error and added lolcat dependancy

This commit is contained in:
Geoff Murphy 2025-05-13 14:40:36 +10:00
parent 0f896e2ec6
commit 68e4b53ea1
2 changed files with 5 additions and 5 deletions

View file

@ -50,6 +50,9 @@ if [ ! "$(command -v figlet)" ]; then FAKE_DEP="$FAKE_DEP figlet"; fi
if [ ! "$(command -v rsync)" ]; then FAKE_DEP="$FAKE_DEP rsync"; fi if [ ! "$(command -v rsync)" ]; then FAKE_DEP="$FAKE_DEP rsync"; fi
if [ ! "$(command -v sudo)" ]; then FAKE_DEP="$FAKE_DEP sudo"; fi if [ ! "$(command -v sudo)" ]; then FAKE_DEP="$FAKE_DEP sudo"; fi
if [ ! "$(command -v vim)" ]; then FAKE_DEP="$FAKE_DEP vim"; fi if [ ! "$(command -v vim)" ]; then FAKE_DEP="$FAKE_DEP vim"; fi
if [ ! "$(command -v apk)" ] && [ ! "$(command -v lolcat)" ];then
FAKE_DEP="$FAKE_DEP lolcat"
fi
#--------[ FAKE//OS Install Dependencies ]--------# #--------[ FAKE//OS Install Dependencies ]--------#

View file

@ -38,13 +38,10 @@ fi
#--------[ Login Display ]--------# #--------[ Login Display ]--------#
echo "" echo ""
if [ "$(command -v lolcat)" ]; then if [ "$(command -v lolcat)" ]; then
cat $FAKE_PATH/assets/logos/logo_full.txt | $FCOLGRAD cat $FAKE_PATH/assets/logo_full.txt | $FCOLGRAD
else else
cat $FAKE_PATH/assets/logos/logo_full.txt cat $FAKE_PATH/assets/logo_full.txt
fi fi
echo ""
cat $FAKE_PATH/assets/logo_full.txt
echo "" echo ""
echo -e "${FCOL1}user:${FCOL0} $(whoami) ${FCOL2}login:${FCOL0} $ENV_LOGIN ${FCOL3}system:${FCOL0} $ENV_ARCH $ENV_DISTRO" echo -e "${FCOL1}user:${FCOL0} $(whoami) ${FCOL2}login:${FCOL0} $ENV_LOGIN ${FCOL3}system:${FCOL0} $ENV_ARCH $ENV_DISTRO"
echo "" echo ""