dotfiles/install_zsh.sh

23 lines
953 B
Bash
Raw Normal View History

2023-10-27 16:50:35 +03:00
#!/bin/sh
2023-10-27 16:52:42 +03:00
# Check if necessary things are installed
2023-10-27 17:12:07 +03:00
if [ ! command -v git &> /dev/null ] || [ ! command -v zsh &> /dev/null ]; then
echo "This script requires git and zsh"
2023-10-27 16:52:42 +03:00
exit 1
fi
2023-10-27 16:50:35 +03:00
# Asking if user really want to install
2023-10-27 20:29:26 +03:00
read -p 'This script will replace ~/.zshrc and ~/.oh-my-zsh with its own. If you still want to run it, type "y": ' -n 1 -r
2023-10-27 16:50:35 +03:00
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
exit 1
fi
# Installing
set -x
2023-10-27 20:29:26 +03:00
rm -rf ~/.oh-my-zsh
git clone https://github.com/ohmyzsh/ohmyzsh.git ~/.oh-my-zsh > /dev/null 2>&1
2023-10-27 17:03:09 +03:00
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting > /dev/null 2>&1
2023-10-27 20:29:26 +03:00
wget -O ~/.zshrc https://nakidai.ddns.net/nakidai/dotfiles/raw/branch/master/zsh/.zshrc > /dev/null 2>&1
2023-10-27 17:03:09 +03:00
wget -O ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/headline.zsh-theme https://nakidai.ddns.net/nakidai/dotfiles/raw/branch/master/zsh/headline.zsh-theme > /dev/null 2>&1