about summary refs log blame commit diff
path: root/configs/setup
blob: 7b7a814908a3838d652aa309b265b008e8241130 (plain) (tree)
1
2
3
4
5
6
7
8
9

                   
                                
 
                                    
                                                 
                                    
                                                  
  
 
                                                 
#!/usr/bin/env bash

configs="$HOME/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" *)