blob: c38345079cc5e0710ba262c00cee160e6a5d5ac3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
ALL=$(shell ls -p | grep "/")
HOME=$(shell echo ~)
install:
@echo "Installing dotfiles to $(HOME)"
@stow -t $(HOME) -v $(ALL)
uninstall:
@echo "Uninstalling dotfiles"
@stow -t $(HOME) -Dv $(ALL)
|