123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- #!/bin/sh
- #
- # This script should be run via curl:
- # sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- # or wget:
- # sh -c "$(wget -qO- https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- #
- # As an alternative, you can download the install script separately and
- # run it afterwards with `sh install.sh'
- #
- set -e
- # Default location
- ZSH=${ZSH:-~/.oh-my-zsh}
- command_exists() {
- command -v "$@" >/dev/null 2>&1
- }
- main() {
- # Use colors, but only if connected to a terminal, and that terminal
- # supports them.
- if command_exists tput; then
- ncolors=$(tput colors)
- fi
- if [ -t 1 ] && [ -n "$ncolors" ] && [ "$ncolors" -ge 8 ]; then
- RED="$(tput setaf 1)"
- GREEN="$(tput setaf 2)"
- YELLOW="$(tput setaf 3)"
- BLUE="$(tput setaf 4)"
- BOLD="$(tput bold)"
- NORMAL="$(tput sgr0)"
- else
- RED=""
- GREEN=""
- YELLOW=""
- BLUE=""
- BOLD=""
- NORMAL=""
- fi
- if ! command_exists zsh; then
- echo "${YELLOW}Zsh is not installed!${NORMAL} Please install zsh first!"
- exit 1
- fi
- if [ -d "$ZSH" ]; then
- cat <<-EOF
- ${YELLOW}You already have Oh My Zsh installed.${NORMAL}
- You'll need to remove $ZSH if you want to re-install.
- EOF
- exit 1
- fi
- # Prevent the cloned repository from having insecure permissions. Failing to do
- # so causes compinit() calls to fail with "command not found: compdef" errors
- # for users with insecure umasks (e.g., "002", allowing group writability). Note
- # that this will be ignored under Cygwin by default, as Windows ACLs take
- # precedence over umasks except for filesystems mounted with option "noacl".
- umask g-w,o-w
- echo "${BLUE}Cloning Oh My Zsh...${NORMAL}"
- command_exists git || {
- echo "Error: git is not installed"
- exit 1
- }
- if [ "$OSTYPE" = cygwin ] && git --version | grep -q msysgit; then
- cat <<-EOF
- Error: Windows/MSYS Git is not supported on Cygwin
- Error: Make sure the Cygwin git package is installed and is first on the $PATH
- EOF
- exit 1
- fi
- git clone --depth=1 https://github.com/robbyrussell/oh-my-zsh.git "$ZSH" || {
- echo "Error: git clone of oh-my-zsh repo failed"
- exit 1
- }
- echo "${BLUE}Looking for an existing zsh config...${NORMAL}"
- if [ -f ~/.zshrc ] || [ -h ~/.zshrc ]; then
- echo "${YELLOW}Found ~/.zshrc.${GREEN} Backing up to ~/.zshrc.pre-oh-my-zsh.${NORMAL}"
- mv ~/.zshrc ~/.zshrc.pre-oh-my-zsh;
- fi
- echo "${BLUE}Using the Oh My Zsh template file and adding it to ~/.zshrc.${NORMAL}"
- cp "$ZSH/templates/zshrc.zsh-template" ~/.zshrc
- sed "/^export ZSH=/ c\\
- export ZSH=\"$ZSH\"
- " ~/.zshrc > ~/.zshrc-omztemp
- mv -f ~/.zshrc-omztemp ~/.zshrc
- # If this user's login shell is not already "zsh", attempt to switch.
- TEST_CURRENT_SHELL=$(basename "$SHELL")
- if [ "$TEST_CURRENT_SHELL" != "zsh" ]; then
- # If this platform provides a "chsh" command (not Cygwin), do it, man!
- if command_exists chsh; then
- echo "${BLUE}Time to change your default shell to zsh!${NORMAL}"
- chsh -s $(grep /zsh$ /etc/shells | tail -1)
- # Else, suggest the user do so manually.
- else
- cat <<-EOF
- I can't change your shell automatically because this system does not have chsh.
- ${BLUE}Please manually change your default shell to zsh${NORMAL}
- EOF
- fi
- fi
- printf "$GREEN"
- cat <<-'EOF'
- __ __
- ____ / /_ ____ ___ __ __ ____ _____/ /_
- / __ \/ __ \ / __ `__ \/ / / / /_ / / ___/ __ \
- / /_/ / / / / / / / / / / /_/ / / /_(__ ) / / /
- \____/_/ /_/ /_/ /_/ /_/\__, / /___/____/_/ /_/
- /____/ ....is now installed!
- Please look over the ~/.zshrc file to select plugins, themes, and options.
- p.s. Follow us on https://twitter.com/ohmyzsh
- p.p.s. Get stickers, shirts, and coffee mugs at https://shop.planetargon.com/collections/oh-my-zsh
- EOF
- printf "$NORMAL"
- env zsh -l
- }
- main
|