zsh-config/greet
Robert Morrison a91c9a530e
chore: Remove executable bit from files
none of these files need to be marked as executable...
2022-12-06 17:47:59 +00:00

18 lines
568 B
Plaintext

has colours.sh && colours.sh
echo '╭───────────╮'
echo '│ Welcome!! │'
echo '╰───────────╯'
date
if [ -d "$HOME/tmp" ]; then
if [ -f "$HOME/tmp/KEEPTMP" ] || [ -f "$HOME/.cleanupResult" ]; then
printf "\033[31m\e[1m\e[5mYou have files in your tmp directory\e[0m\n"
exa -alhT ~/tmp || tree ~/tmp
if [ -f "$HOME/.cleanupResult" ]; then
echo "ISSUE WAS:"
cat "$HOME/.cleanupResult"
fi
fi
fi
has randomVerse && randomVerse
has colours.sh && colours.sh