blob: d49f35906e68f42e2d5826ef3dcbd095493f2be7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clean:
rm -f $$HOME/.profile
rm -f $$HOME/.xinitrc
rm -f $$HOME/.xprofile
rm -f $$HOME/.zprofile
stow --verbose --target=$$HOME --delete */
install:
stow --verbose --target=$$HOME --restow */
ln -s $$HOME/.config/xinitrc $$HOME/.xinitrc
ln -s $$HOME/.config/xprofile $$HOME/.xprofile
ln -s $$HOME/.config/zsh/zprofile $$HOME/.profile
ln -s $$HOME/.config/zsh/zprofile $$HOME/.zprofile
|