From 72355fa057416a3eddfe34563d3bfdea1ea620a6 Mon Sep 17 00:00:00 2001 From: Tom van der Lee Date: Thu, 1 May 2014 23:19:09 +0200 Subject: Updates - VIM config - Herbstluft config --- Makefile | 38 ++++++++++++++++++++++++++++---------- 1 file changed, 28 insertions(+), 10 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d8e0e51..0595784 100644 --- a/Makefile +++ b/Makefile @@ -1,25 +1,43 @@ -WM-THEME-DIR = .local/share/themes/numix-no-title +NUMIX-NO-TITLE = .local/share/themes/numix-no-title BASHRC = .bashrc +VIMRC = .vimrc +HERBSTLUFT = .config/herbstluftwm install: all -all: wm-theme bash +all: bash vim numix-no-title herbstluft -wm-theme: +numix-no-title: #create wm theme dir if not exist - mkdir -p ~/$(WM-THEME-DIR) + mkdir -p ~/$(NUMIX-NO-TILE) #remove content if existing - -rm -rf ~/$(WM-THEME-DIR)/* + -rm -rf ~/$(NUMIX-NO-TILE)/* - #copy contents in - cp -rf $(WM-THEME-DIR)/* ~/$(WM-THEME-DIR)/ + #copy new contents in + cp -rf $(NUMIX-NO-TILE)/* ~/$(NUMIX-NO-TITLE)/ + +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 to home - cp -f $(BASHRC) ~/$(BASHRC) + #copy bashrc to home + cp -f $(BASHRC) ~ + +vim: + #copy vimrc to home + cp -f $(VIMRC) ~ uninstall: #remove all -rm -rf ~/$(WM-THEME-DIR) - -rm -f ~/$(BASHRC) \ No newline at end of file + -rm -rf ~/$(HERBSTLUFT) + -rm -f ~/$(BASHRC) + -rm -f ~/$(VIMRC) -- cgit v1.2.3