Answers for "oh my zsh git"

1

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
Posted by: Guest on August-15-2021
1

oh my zsh git

curl -Lo install.sh https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh
sh install.sh
Posted by: Guest on July-04-2020
0

oh my zsh git

sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Posted by: Guest on July-04-2020
0

oh my zsh git

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Posted by: Guest on December-05-2019

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language