diff options
Diffstat (limited to 'configs/uninstall')
-rwxr-xr-x | configs/uninstall | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/configs/uninstall b/configs/uninstall index 77d3199f69f7..526c32113f53 100755 --- a/configs/uninstall +++ b/configs/uninstall @@ -3,14 +3,11 @@ configs="$DOTFILES/configs" case $(hostname) in - # desktop - wpcarro.lon.corp.google.com) + $DESKTOP) (cd "$configs/desktop" && stow --delete --target="$HOME" .);; - # laptop - wpcarro2) + $LAPTOP) (cd "$configs/laptop" && stow --delete --target="$HOME" .);; - # cloudtop - wpcarro.c.googlers.com) + $CLOUDTOP) (cd "$configs/cloudtop" && stow --delete --target="$HOME" .);; esac |