blob: 547d01280951a10954f357c43b19330e67a522ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
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" *)
|