gists/shell/zsh-fancify/zsh-install.sh

14 lines
383 B
Bash
Raw Normal View History

2022-01-11 00:15:51 +00:00
#!/bin/bash
# https://gist.github.com/anthonyaxenov/b8460935d06b9f0da72def03d0f26515
echo "*********************************************"
echo " zsh installer (vanilla)"
echo "*********************************************"
sudo apt-get update
sudo apt-get install zsh -y
chsh -s $(which zsh)
echo ""
echo "Finish! Log out of your session and login again. Then run zsh-fancify.sh"