tvl-depot/configs/setup

12 lines
284 B
Text
Raw Normal View History

#!/usr/bin/env bash
configs="$HOME/dotfiles/configs"
2016-11-10 17:47:44 +01:00
if [[ $(uname) == 'Darwin' ]]; then
(cd "$configs/os_x" && stow --target="$HOME" *)
elif [[ $(uname) == 'Linux' ]]; then
(cd "$configs/linux" && stow --target="$HOME" *)
fi
2016-11-10 17:47:44 +01:00
(cd "$configs/shared" && stow --target="$HOME" *)