about summary refs log tree commit diff
path: root/configs/uninstall
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-03-16T23·54+0000
committerWilliam Carroll <wpcarro@gmail.com>2019-03-16T23·54+0000
commit2a70fdf5c2cb7012e5102dd3a3dd2ad23123dea7 (patch)
tree1bcc0a646b0d292e4b0d22d921e921ac10ed7edd /configs/uninstall
parent44e46bbce2bd94ff6c9379152696619186ae248d (diff)
Support uninstall; setup -> install
- support uninstall in Makefile
- change setup script name to install
Diffstat (limited to 'configs/uninstall')
-rw-r--r--configs/uninstall11
1 files changed, 11 insertions, 0 deletions
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" *)