ohmyzsh/tools/uninstall.sh
nebirhos 2cf1adb251 * Colorized uninstall output
* Plugin tool improved
2012-03-25 18:50:09 +02:00

29 lines
674 B
Bash
Executable file

#!/bin/zsh
### Better prompt the user!
echo -n "\033[0;33mAre you sure to completely remove Oh My Zsh?\033[0m"
read "a? [type 'yes' to continue] "
if [[ $a != "yes" ]]; then
return 0
fi
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."