tvl-depot/configs/install

18 lines
443 B
Text
Raw Normal View History

#!/usr/bin/env bash
configs="$DOTFILES/configs"
2016-11-10 17:47:44 +01:00
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
2016-11-10 17:47:44 +01:00
(cd "$configs/shared" && stow --target="$HOME" .)