about summary refs log tree commit diff
path: root/configs/install
blob: c810dfd4f9f2ae2840943eab70c9d1d647643a3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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" .);;
  # Acer Manjaro laptop
  acer-manjaro)
    (cd "$configs/personal_laptop" && stow --target="$HOME" .);;
esac

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