diff --git a/bootstrap.sh b/bootstrap.sh index 55d0443..3de17bb 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -7,12 +7,20 @@ if [ $? -ne 0 ]; then fi # Clone dotfiles -git clone https://github.com/nikdoof/dotfiles.git $HOME/.dotfiles >/dev/null +git clone git@github.com:nikdoof/dotfiles.git $HOME/.dotfiles >/dev/null +git clone git@github.com:nikdoof/dotfiles-private.git $HOME/.dotfiles-private >/dev/null -# Stow the default packages +# Stow the default public packages for package in bin shell-common bash zsh; do echo "Stowing ${package}" $HOME/.dotfiles/bin/bin/stowage --clobber install $package done + +# Stow the default private packages +for package in ssh; do + echo "Stowing ${package}" + $HOME/.dotfiles/bin/bin/stowage -r $HOME/.dotfiles-private --clobber install $package +done + echo "" echo "Done, either source ~/.bash_profile / ~/.zshrc or restart your shell."