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

                   
                           
 
                   
           
                                                        
          
                                                            
            



                                                                
    
 
                                                 
#!/usr/bin/env bash

configs="$DOTFILES/configs"

case $(hostname) in
  $DESKTOP)
    (cd "$configs/desktop" && stow --target="$HOME" .);;
  $LAPTOP)
    (cd "$configs/work_laptop" && stow --target="$HOME" .);;
  $CLOUDTOP)
    (cd "$configs/cloudtop" && stow --target="$HOME" .);;
  # Acer Manjaro laptop
  acer-manjaro)
    (cd "$configs/personal_laptop" && stow --target="$HOME" .);;
esac

(cd "$configs/shared" && stow --target="$HOME" .)