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