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

                   
                            
 
                   
           
                                                                 
          
                                                                
    
 
                                                          
#!/usr/bin/env bash

configs="$BRIEFCASE/configs"

case $(hostname) in
  $DESKTOP)
    (cd "$configs/desktop" && stow --delete --target="$HOME" .);;
  $LAPTOP)
    (cd "$configs/laptop" && stow --delete --target="$HOME" .);;
esac

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