summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2009-08-31 15:00:38 -0700
committerRobby Russell <robby@planetargon.com>2009-08-31 15:00:38 -0700
commite1f5c0c703c60d473144f58e1ab49d51c38ab526 (patch)
treec4f6b96d460b595f20c1178c033e0cf4c852cabe
parent6fd7da65a34e9a2e10ccef7e83d974bab63cb99e (diff)
downloadzsh-e1f5c0c703c60d473144f58e1ab49d51c38ab526.tar.gz
zsh-e1f5c0c703c60d473144f58e1ab49d51c38ab526.tar.bz2
zsh-e1f5c0c703c60d473144f58e1ab49d51c38ab526.zip
Adding an uninstaller tool
-rw-r--r--README.textile4
-rw-r--r--functions.zsh4
-rw-r--r--tools/uninstall.sh20
3 files changed, 28 insertions, 0 deletions
diff --git a/README.textile b/README.textile
index f09feec0e..d7169c394 100644
--- a/README.textile
+++ b/README.textile
@@ -41,6 +41,10 @@ TODO: Update this..
* Theme support: Change the @ZSH_THEME@ environment variable in @~/.zshrc@.
* much much more..
+h3. Uninstalling
+
+If you want to uninstall it, just run @uninstall_oh_my_zsh@ from the command line and it'll remove itself and revert you to bash (or your previous zsh config).
+
h2. Thanks
* Rick Olsen (technoweenie) might remember some of the configuration, which I took from a pastie a few years ago.
diff --git a/functions.zsh b/functions.zsh
index 1f2a2023c..2ce91c964 100644
--- a/functions.zsh
+++ b/functions.zsh
@@ -26,4 +26,8 @@ function remote_console() {
function zsh_stats() {
history | awk '{print $2}' | sort | uniq -c | sort -rn | head
+}
+
+function uninstall_oh_my_zsh() {
+ /bin/sh $ZSH/tools/uninstall.sh
} \ No newline at end of file
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