diff options
Diffstat (limited to 'configs')
-rwxr-xr-x | configs/install (renamed from configs/setup) | 0 | ||||
-rw-r--r-- | configs/uninstall | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/configs/setup b/configs/install index 0e0ba9290af2..0e0ba9290af2 100755 --- a/configs/setup +++ b/configs/install diff --git a/configs/uninstall b/configs/uninstall new file mode 100644 index 000000000000..547d01280951 --- /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" *) |