blob: 0e0ba9290af242477cab2c9d8a9dc7eaf22d37b0 (
plain) (
tree)
|
|
#!/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" *)
|