1
0
Fork 0

Show welcome message after starting a shell ...

... with some basic information, mainly
to show that the dotfiles are used
This commit is contained in:
Alexander Hess 2026-06-11 18:28:03 +02:00
commit 033c1d4e27
Signed by: alexander
GPG key ID: D88F903B85326FFE
2 changed files with 56 additions and 0 deletions

View file

@ -60,3 +60,7 @@ fi
# Put local executables on the `$PATH`
_prepend_to_path "$HOME/.local/bin"
# When everything is loaded, show a little welcome message
case $- in *i*) [ -f "$HOME/.config/shell/welcome" ] && . "$HOME/.config/shell/welcome";; esac