Патч профиля для запуска zsh

This commit is contained in:
Дмитрий Рамазанов 2019-09-18 05:24:10 +00:00
parent efd9c2287f
commit a789b21e1b

View File

@ -0,0 +1,8 @@
# 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