about summary refs log tree commit diff
path: root/configs/install
blob: d4d760e73f8dfd51c44b7a0565f050726970df12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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" .);;
esac

(cd "$configs/shared" && stow --target="$HOME" .)