tvl-depot/configs/install
William Carroll 2a70fdf5c2 Support uninstall; setup -> install
- support uninstall in Makefile
- change setup script name to install
2019-03-16 23:54:58 +00:00

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" *)