Add helloworld utility and update welcome message in .bashrc
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 25s
Nix Format Check / check-format (push) Failing after 1m30s
Python Lint Check / check-python (push) Failing after 18s

This commit is contained in:
2025-07-11 00:37:23 +00:00
parent 10508b9916
commit a349923d8e
2 changed files with 367 additions and 2 deletions

View File

@@ -181,6 +181,6 @@ if [ -f $HOME/.bashrc.local ]; then
fi
# Display a welcome message for interactive shells
if [ -t 1 ]; then
dotf hello
if [ -t 1 ] && command -v helloworld &> /dev/null; then
helloworld
fi