Dernière activité 1 month ago

Révision 0e3e37b90d38e560de4840f1b6b0d0ae6ef03d22

README.md Brut

Add this to the end of your .bashrc to start nushell in zellij after ssh logon.

ssh-login-setup.sh Brut
1# Launch sequence for interactive SSH sessions only
2if [[ $- == *i* ]] && [[ -n "$SSH_TTY" ]]; then
3
4 # 1. Launch Zellij WITHOUT 'exec' so the SSH parent shell stays alive
5 if [[ -z "$ZELLIJ" ]]; then
6 zellij
7 fi
8
9 # 2. Launch Nushell (either inside Zellij, or when you drop out of it)
10 if [[ -z "$NU_LAUNCHED" ]]; then
11 export NU_LAUNCHED=1
12 exec nu
13 fi
14
15fi