You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
481 B
20 lines
481 B
15 years ago
|
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."
|