Add wget install option

This commit is contained in:
Ivan Bushchik 2022-06-06 17:45:34 +03:00
parent 0c3f7093b8
commit 21a4707f9d
No known key found for this signature in database
GPG key ID: 3E4E9C7D66E44BF7
2 changed files with 17 additions and 2 deletions

View file

@ -6,4 +6,4 @@ Changes:
- Now theme does not depend on GitHub
![Screenshot](/screenshot.png)
![Screenshot](/screenshot.png)

View file

@ -25,4 +25,19 @@ then
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
exit 0
fi
if [ -f $(which wget) ]
then
if [[ $INSTALL_OHMYZSH = "y" || $INSTALL_OHMYZSH = "Y" ]]
then
sh -c "$(wget https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
fi
wget https://raw.githubusercontent.com/ivabus/ivabus-zsh-theme/master/ivabus.zsh-theme -O ~/.oh-my-zsh/custom/themes/ivabus.zsh-theme
echo "Now you need to set ivabus as your ZSH_THEME in .zshrc"
exit 0
fi
echo "Could not find a curl or wget. Install one of them, and then restart this script."
exit 255