Add install.sh

This commit is contained in:
Ivan Bushchik 2022-06-06 17:39:21 +03:00
parent 38bd23919f
commit 0b604d898e
No known key found for this signature in database
GPG key ID: 3E4E9C7D66E44BF7

28
install.sh Executable file
View file

@ -0,0 +1,28 @@
#!/bin/bash
if [ ! -f /bin/zsh ]
then
echo "You need to install zsh."
exit 255
fi
if [ ! -d ~/.oh-my-zsh/ ]
then
echo "You need to install oh-my-zsh first."
read -p "Install (y/N)?: " INSTALL_OHMYZSH
if [[ $INSTALL_OHMYZSH == "n" || $INSTALL_OHMYZSH == "N" || $INSTALL_OHMYZSH == "" ]]
then
echo "Exiting"
exit 255
fi
fi
if [ -f $(which curl) ]
then
if [[ $INSTALL_OHMYZSH = "y" || $INSTALL_OHMYZSH = "Y" ]]
then
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
fi
curl -fsSL https://raw.githubusercontent.com/ivabus/ivabus-zsh-theme/master/ivabus.zsh-theme > ~/.oh-my-zsh/custom/themes/ivabus.zsh-theme
echo "Now you need to set ivabus as your ZSH_THEME in .zshrc"
fi