help with zsh
i installed zsh on my terminal when i set the custom path to the zsh its didnt a zsh (i tested it with installing oh my zsh) but if its the bash and i type zsh its going to zsh mode how can i automate it thx
5 Replies
change terminal profiles in the terminal app, which should be ptyxis by default
its usually the best practice to only modify shell in a terminal emulator (i.e. app) and not do it system wide
because that will break things
if ptyxis doesn't have the option you can try installing konsole from bazaar and configure that
ptyxis should have it

you can probably configure the start command to be zsh
i just reinstalled zsh and all worked thx
Siosm's blog
Don’t change your login shell, use a modern terminal emulator
chsh is a small tool that lets you change the default shell for your current user. In order to let any user change their own shell, which is set in /etc/passwd, it needs privileges and is generally setuid root. I am of the opinion that setuid/setgid binaries are a UNIX legacy that should be deprecated. I will explain the security reasons behind...