blob: 58b6ac0ec7770f918d95d929de97fb46ba4424d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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)
|