### Making ZSH the Default Shell:
In this step, I will show you how to set ZSH as the default shell.
First, you have to find out the path of the ZSH shell with the following command:
```bash
whereis zsh
Now set ZSH as the default login shell for the user you’re logged in as with the following command:
sudo usermod -s /usr/bin/zsh $(whoami)
Now restart your computer with the following command:
sudo reboot