From 311b587db16ed09b6e194f05a0ace25cb3c96832 Mon Sep 17 00:00:00 2001 From: djorgensen Date: Tue, 10 Mar 2026 15:24:32 -0600 Subject: [PATCH] Add .bash_profile --- .bash_profile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .bash_profile diff --git a/.bash_profile b/.bash_profile new file mode 100644 index 0000000..aba1649 --- /dev/null +++ b/.bash_profile @@ -0,0 +1,11 @@ +# Check if zsh is installed +if command -v zsh > /dev/null 2>&1; then + # If zsh exists, replace the current bash shell with zsh + # The '-l' flag ensures zsh runs as a login shell + exec zsh -l +else + # If zsh is NOT found, load the standard bashrc configuration + if [ -f ~/.bashrc ]; then + source ~/.bashrc + fi +fi \ No newline at end of file