/my_zsh

Primary LanguageShellMIT LicenseMIT

my_zsh

Check if zsh is already installed

grep zsh /etc/shells

If you got something like that, skip the Download and install step:

/bin/zsh  
/usr/bin/zsh

Download and install the Z shell

sudo apt-get install zsh

Set zsh as the default login shell

chsh -s /bin/zsh ${USER}

Install antigen

git clone https://github.com/zsh-users/antigen.git ${WORKSPACE}/antigen

Install Liquidprompt

git clone https://github.com/nojhan/liquidprompt.git ${WORKSPACE}/liquidprompt

Install DotMatrix

git clone https://github.com/nojhan/lp-dotmatrix.git ${WORKSPACE}/lp-dotmatrix

Copy my .zshrc and .alias files

curl https://raw.githubusercontent.com/maxulysse/myzsh/main/.zshrc -o ${HOME}/.zshrc
curl https://raw.githubusercontent.com/maxulysse/myzsh/main/.alias -o ${HOME}/.alias

Credits