mirror of
https://github.com/Lissy93/dotfiles.git
synced 2025-06-27 12:31:21 +02:00
Adds a script to welcome user after SSH login
This commit is contained in:
parent
07d4838451
commit
229d6f062b
25
utils/welcome-banner.sh
Normal file
25
utils/welcome-banner.sh
Normal 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
|
Loading…
x
Reference in New Issue
Block a user