uninstall.sh 673 Bytes
Newer Older
Robby Russell's avatar
Robby Russell committed
1
2
3
4
5
6
echo "Removing ~/.oh-my-zsh"
if [[ -d ~/.oh-my-zsh ]]
then
  rm -rf ~/.oh-my-zsh
fi

7
echo "Looking for original zsh config..."
Robby Russell's avatar
Robby Russell committed
8
9
if [ -f ~/.zshrc.pre-oh-my-zsh ] || [ -h ~/.zshrc.pre-oh-my-zsh ]
then
10
11
12
13
14
15
16
17
18
19
20
  echo "Found ~/.zshrc.pre-oh-my-zsh -- Restoring to ~/.zshrc";

  if [ -f ~/.zshrc ] || [ -h ~/.zshrc ]
  then
    ZSHRC_SAVE=".zshrc.omz-uninstalled-`date +%Y%m%d%H%M%S`";
    echo "Found ~/.zshrc -- Renaming to ~/${ZSHRC_SAVE}";
    mv ~/.zshrc ~/${ZSHRC_SAVE};
  fi

  mv ~/.zshrc.pre-oh-my-zsh ~/.zshrc;

Robby Russell's avatar
Robby Russell committed
21
22
23
24
25
26
27
  source ~/.zshrc;
else
  echo "Switching back to bash"
  chsh -s /bin/bash
  source /etc/profile
fi

28
echo "Thanks for trying out Oh My Zsh. It's been uninstalled."