From e1f5c0c703c60d473144f58e1ab49d51c38ab526 Mon Sep 17 00:00:00 2001 From: Robby Russell Date: Mon, 31 Aug 2009 15:00:38 -0700 Subject: Adding an uninstaller tool --- tools/uninstall.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tools/uninstall.sh (limited to 'tools') diff --git a/tools/uninstall.sh b/tools/uninstall.sh new file mode 100644 index 000000000..8ff583322 --- /dev/null +++ b/tools/uninstall.sh @@ -0,0 +1,20 @@ +echo "Removing ~/.oh-my-zsh" +if [[ -d ~/.oh-my-zsh ]] +then + rm -rf ~/.oh-my-zsh +fi + +echo "Looking for an existing zsh config..." +if [ -f ~/.zshrc.pre-oh-my-zsh ] || [ -h ~/.zshrc.pre-oh-my-zsh ] +then + echo "Found ~/.zshrc. Backing up to ~/.zshrc.pre-oh-my-zsh"; + rm ~/.zshrc; + cp ~/.zshrc.pre-oh-my-zsh ~/.zshrc; + source ~/.zshrc; +else + echo "Switching back to bash" + chsh -s /bin/bash + source /etc/profile +fi + +echo "Thanks for trying out Oh My Zsh. It's been uninstalled." \ No newline at end of file -- cgit v1.2.3-70-g09d2