-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·30 lines (25 loc) · 849 Bytes
/
Makefile
File metadata and controls
executable file
·30 lines (25 loc) · 849 Bytes
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
26
27
28
29
30
#INSTALL_PROVIDER="YOU HAVE NO PROVIDER CONFIGURED, OPEN THE MAKEFILE AND EDIT THIS LINE"
INSTALL_PROVIDER = $(shell which apt)
.PHONY: apps
apps:
$(shell $(INSTALL_PROVIDER) install -y openbox nitrogen arandr tint2 synapse volumeicon redshift)
.PHONY: bash
bash:
cp ./aliases ~/.alias
cat ./bashrc >> ~/.bashrc
.PHONY: vim
vim:
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
rm ~/.vimrc && cp ./vimrc ~/.vimrc
vim -c ':PluginInstall'
.PHONY: git
git:
test -s ~/.gitconfig && rm ~/.gitconfig || true
cp ./gitconfig ~/.gitconfig
.PHONY: openbox
openbox:
test -s ~/.config/openbox/autostart && rm ~/.config/openbox/autostart || true
test ! -d ~/.config/openbox && mkdir ~/.config/openbox || true
cp ./autostart ~/.config/openbox/
test -s ~/.tint2rc && rm ~/.tint2rc || true
cp ./tint2rc ~/.tint2rc