6b456c1b7a
Currently paying the price of months of non-diligent git usage. Here's what has changed. - Theming support in Gvcci and wpgtk - Dropping support for i3 - Supporting EXWM - Many Elisp modules - Collapsed redundant directories in ./configs
20 lines
512 B
Bash
Executable file
20 lines
512 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
configs="$DOTFILES/configs"
|
|
|
|
case $(hostname) in
|
|
# desktop
|
|
wpcarro.lon.corp.google.com)
|
|
(cd "$configs/desktop" && stow --target="$HOME" .);;
|
|
# laptop
|
|
wpcarro2)
|
|
(cd "$configs/work_laptop" && stow --target="$HOME" .);;
|
|
# cloudtop
|
|
wpcarro.c.googlers.com)
|
|
(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" .)
|