NUMIX = .local/share/themes/numix-no-title BASHRC = .bashrc VIMRC = .vimrc HERBSTLUFT = .config/herbstluftwm XRESOURCES = .Xresources install: all all: bash vim xresources numix-no-title herbstluftwm numix-no-title: #create wm theme dir if not exist mkdir -p ~/$(NUMIX) #remove content if existing -rm -rf ~/$(NUMIX)/* #copy new contents in cp -rf $(NUMIX)/* ~/$(NUMIX)/ herbstluftwm: #create herbstluftwm if not exist mkdir -p ~/$(HERBSTLUFT) #remove content if existing -rm -rf ~/$(HERBSTLUFT)/* #copy new contents in cp -rf $(HERBSTLUFT)/* ~/$(HERBSTLUFT)/ bash: #copy bashrc to home cp -f $(BASHRC) ~ vim: #copy vimrc to home cp -f $(VIMRC) ~ xresources: #copy Xresources to home cp -f $(XRESOURCES) ~ uninstall: #remove all -rm -rf ~/$(WM-THEME-DIR) -rm -rf ~/$(HERBSTLUFT) -rm -f ~/$(BASHRC) -rm -f ~/$(VIMRC) -rm -f ~/$(XRESOURCES)