blob: d2153bfaded15eae45256c33fca18856d5b4b3eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env bash
case "${MACH:=desktop}" in
'desktop')
mkdir "$HOME/bin"
stow -d bin/ -t "$HOME/bin" -R common dmscripts extra
mkdir "$HOME/.config"
stow -d config/ -t "$HOME/.config" -R essentials common extra theme X
stow -d config/ -t "$HOME/" -R zshrc
;;
*)
break
esac
|