-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
54 lines (54 loc) · 1.22 KB
/
Makefile
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
help:
@echo "make: usage"
@echo " make install-sh"
@echo " make install-ssh"
@echo " make install-tmux"
@echo " make install-vim"
@echo " make install-nvim"
@echo " make install-git"
@echo " make install-bin"
@echo " make install-alacritty"
@echo " make install-rio"
@echo " make install-rofi"
@echo " make install-sway"
@echo " make install-xsessionrc"
@echo " make install-autostart"
@echo " make install-xresource"
@echo " make install-fontconfig"
install-sh:
cp .gdc.* ~
cp .zshrc ~
cp oh-my-zsh/themes/dacheng.zsh-theme ~/.oh-my-zsh/themes/
install-ssh:
cp ssh/config ~/.ssh
install-tmux:
cp -r tmux ~/.config/
install-vim:
cp -r vim ~/.config/
cp vim/vimrc ~/.vimrc
install-nvim: install-vim
cp -r nvim ~/.config/
install-git:
cp .gitconfig ~
cp .gitconfig.xxx ~
cp .gitignore.global ~
cp .gitignore.xxx ~
install-bin:
cp -rp bin/* ~/bin
install-alacritty:
cp -r alacritty ~/.config
install-rio:
cp -r rio ~/.config
install-rofi:
cp -r rofi ~/.config
install-sway:
cp -r sway ~/.config
install-xsessionrc:
cp -p .xsessionrc ~
install-autostart:
cp -p autostart/* ~/.config/autostart
install-xresource:
cp .Xresources ~/
cp .Xresources ~/.Xdefaults
install-fontconfig:
cp -r fontconfig ~/.config