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

                   
                           
 
                                    
                                                 
                                    
                                                  
  
 
                                                 
#!/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" *)