about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rwxr-xr-xconfigs/install (renamed from configs/setup)0
-rw-r--r--configs/uninstall11
3 files changed, 15 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 999fc266d9..0882029250 100644
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,5 @@
 install:
-	source "${DOTFILES}/configs/setup"
+	source "${DOTFILES}/configs/install"
+
+uninstall:
+	source "${DOTFILES}/configs/uninstall"
diff --git a/configs/setup b/configs/install
index 0e0ba9290a..0e0ba9290a 100755
--- a/configs/setup
+++ b/configs/install
diff --git a/configs/uninstall b/configs/uninstall
new file mode 100644
index 0000000000..547d012809
--- /dev/null
+++ b/configs/uninstall
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+
+configs="$DOTFILES/configs"
+
+if [[  $(uname) == 'Darwin' ]]; then
+  (cd "$configs/os_x" && stow --delete --target="$HOME" *)
+elif [[ $(uname) == 'Linux' ]]; then
+  (cd "$configs/linux" && stow --delete --target="$HOME" *)
+fi
+
+(cd "$configs/shared" && stow --delete --target="$HOME" *)