aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2014-03-19 14:35:42 +0100
committerGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2014-03-19 14:35:42 +0100
commitc2db257e6c5e63b3b96d63a3e033d0f719743699 (patch)
treeaaf1c9c1a297f100fe88adc2567f155ab7bdf010 /Makefile
parent9489231a06c3a60bd319ada52701b20742dc4bff (diff)
downloaddotfiles-c2db257e6c5e63b3b96d63a3e033d0f719743699.tar.gz
dotfiles-c2db257e6c5e63b3b96d63a3e033d0f719743699.tar.bz2
dotfiles-c2db257e6c5e63b3b96d63a3e033d0f719743699.zip
Added dotfiles and Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..58b6ac0
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,20 @@
1WM-THEME-DIR = .local/share/themes/numix-no-title
2BASHRC = .bashrc
3
4install: all
5
6all: wm-theme bash
7
8wm-theme:
9 #create wm theme dir if not exist
10 mkdir -p ~/$(WM-THEME-DIR)
11
12 #remove content if existing
13 -rm -rf ~/$(WM-THEME-DIR)/*
14
15 #copy contents in
16 cp -rf $(WM-THEME-DIR)/* ~/$(WM-THEME-DIR)/
17
18bash:
19 #copy to home
20 cp -f $(BASHRC) ~/$(BASHRC) \ No newline at end of file