triston-notes/Cards/dev/Install and Setup Zsh in Ubuntu.md

25 lines
362 B
Markdown
Raw Normal View History

2023-10-21 23:52:54 +00:00
# Install and Setup Zsh in Ubuntu
## Install
```bash
sudo apt install zsh
chsh -s $(which zsh)
//or
chsh -s /usr/bin/zsh
```
## Set as default shell
1) Reload terminal
2) select (2) from options - *this just populates recommended settings*
## Revert to bash shell - *or some other*
```bash
sudo apt --purge remove zsh
chsh -s $(which "SHELL NAME")
```