aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: d8e0e51b1124b308c51c95f52c01d30e1e0e0f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
WM-THEME-DIR = .local/share/themes/numix-no-title
BASHRC = .bashrc

install: all

all: wm-theme bash

wm-theme: 
	#create wm theme dir if not exist
	mkdir -p  ~/$(WM-THEME-DIR)

	#remove content if existing
	-rm -rf ~/$(WM-THEME-DIR)/*

	#copy contents in
	cp -rf $(WM-THEME-DIR)/* ~/$(WM-THEME-DIR)/

bash:
	#copy to home
	cp -f $(BASHRC) ~/$(BASHRC)

uninstall: 
	#remove all
	-rm -rf ~/$(WM-THEME-DIR)
	-rm -f ~/$(BASHRC)