8 lines
206 B
Plaintext
8 lines
206 B
Plaintext
# Add this to your .profile if you can't change your default shell in account
|
|
# run zsh
|
|
if [ -x /bin/zsh ]; then
|
|
export SHELL=/bin/zsh
|
|
if [ -n "$SSH_CONNECTION" ]; then
|
|
exec /bin/zsh
|
|
fi
|
|
fi |