diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 20 |
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 @@ | |||
| 1 | WM-THEME-DIR = .local/share/themes/numix-no-title | ||
| 2 | BASHRC = .bashrc | ||
| 3 | |||
| 4 | install: all | ||
| 5 | |||
| 6 | all: wm-theme bash | ||
| 7 | |||
| 8 | wm-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 | |||
| 18 | bash: | ||
| 19 | #copy to home | ||
| 20 | cp -f $(BASHRC) ~/$(BASHRC) \ No newline at end of file | ||
