2a70fdf5c2
- support uninstall in Makefile - change setup script name to install
11 lines
279 B
Bash
Executable file
11 lines
279 B
Bash
Executable file
#!/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" *)
|