Adds a script to welcome user after SSH login

This commit is contained in:
Alicia Sykes 2021-02-05 22:18:13 +00:00
parent 07d4838451
commit 229d6f062b

25
utils/welcome-banner.sh Normal file
View File

@ -0,0 +1,25 @@
# Script that shows a welcome message and prints system info for user
# Licensed under MIT, (C) Alicia Sykes 2021: https://aliciasykes.com
# Make nice welcome message, with a first-letter capitalized username
WELCOME_MSG="Welcome $(echo "$USER" | sed 's/.*/\u&/') !"
# Print welcome message, using figlet & lolcat if availible
if hash lolcat 2>/dev/null && hash figlet 2>/dev/null; then
echo "${WELCOME_MSG}" | figlet | lolcat
else
echo "${WELCOME_MSG}"
fi
# Print system information with neofetch, if it's installed
if hash neofetch 2>/dev/null; then
neofetch --shell_version off \
--disable shell resolution de wm wm_theme theme icons terminal \
--backend off \
--colors 4 8 4 4 8 6 \
--color_blocks off \
--memory_display info
fi
# EOF