diff options
Diffstat (limited to 'configs/install')
-rwxr-xr-x | configs/install | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/configs/install b/configs/install index e33e32c1affe..4aedf35be1f7 100755 --- a/configs/install +++ b/configs/install @@ -3,14 +3,11 @@ configs="$DOTFILES/configs" case $(hostname) in - # desktop - wpcarro.lon.corp.google.com) + $DESKTOP) (cd "$configs/desktop" && stow --target="$HOME" .);; - # laptop - wpcarro2) + $LAPTOP) (cd "$configs/work_laptop" && stow --target="$HOME" .);; - # cloudtop - wpcarro.c.googlers.com) + $CLOUDTOP) (cd "$configs/cloudtop" && stow --target="$HOME" .);; # Acer Manjaro laptop acer-manjaro) |