diff options
Diffstat (limited to 'configs/install')
-rwxr-xr-x | configs/install | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configs/install b/configs/install new file mode 100755 index 000000000000..0e0ba9290af2 --- /dev/null +++ b/configs/install @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +configs="$DOTFILES/configs" + +if [[ $(uname) == 'Darwin' ]]; then + (cd "$configs/os_x" && stow --target="$HOME" *) +elif [[ $(uname) == 'Linux' ]]; then + (cd "$configs/linux" && stow --target="$HOME" *) +fi + +(cd "$configs/shared" && stow --target="$HOME" *) |