oh my zsh
# Installing zsh
sudo apt install zsh
sudo passwd root # Add Root Password
# Installing Oh My Zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# Exit Terminal
exit
# And Open Terminal And See Zsh Is Running
# If you want to change the theme
# ---
# open https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
# Select Theme Name
# ----
# Go To home/$user Terminal
cd $main
# Installing Nano GUI Editor
sudo apt install nano
# Open .zshrc File
nano .zshrc
# Go To ZSH_THEME=""
# Paste Theme Name
ZSH_THEME="alanpeabody"
# Ctrl + S To save File
# Ctrl + X To Exit File
# ----
# Exit Terminal
exit
# Open Terminal And See oh my zsh has change theme