tvl-depot/configs/install
William Carroll 77633d22ae Drop support for personal_laptop
My former Manjaro device is now a NixOS device called "socrates", which hosts
this git repo and a few other projects.
2020-03-05 15:04:04 +00:00

14 lines
339 B
Bash
Executable file

#!/usr/bin/env bash
configs="$BRIEFCASE/configs"
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" .);;
esac
(cd "$configs/shared" && stow --target="$HOME" .)