fix(bash): auto-exec zsh in Codespaces, add .bashrc

.bash_profile execs into zsh when available (chsh doesn't persist
in containers). Shows amber warning if zsh not found.
.bashrc sources .bash_profile for non-login bash sessions (e.g.
iTerm2 profiles with 'bash' command).

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-03-24 18:08:50 +00:00
parent ffd26e06d6
commit a2b82b6aef
2 changed files with 11 additions and 0 deletions

2
home/.bashrc Normal file
View File

@@ -0,0 +1,2 @@
# Non-login shells read .bashrc; source .bash_profile for unified setup
[ -f "$HOME/.bash_profile" ] && source "$HOME/.bash_profile"