Watch
1
0
Fork
You've already forked dotfiles
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 committed by Alexander Hess
commit 3a4b67589f
Signed by: alexander
GPG key ID: B46EDB4DFC26805D
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