Neofetch says my shell is bash. However, I was under the impression that i changed my default shell to zsh with the chsh command.
Echo $0
shows zsh as my current shell, and echo $SHELL
shows bash as my default shell.
How do I get zsh to be the default, and will neofetch be able to reflect this?
export SHELL=zsh
, seems to have done the trick. Now neofetch correctly reflects my shell. – Invader Vim Jul 30 '20 at 13:58