-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
93 lines (71 loc) · 1.99 KB
/
Makefile
File metadata and controls
93 lines (71 loc) · 1.99 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
.PHONY: init sync vim vundle zsh oh-my-zsh xinit Xresources Xmodmap conky \
musca stalonetray screen tmux vimperator keynav dunst fcitx \
fontconfig i3 ranger openbox
init: vim zsh xinit Xresources Xmodmap conky musca stalonetray screen \
tmux vimperator keynav dunst fcitx fontconfig i3 ranger openbox
sync:
git pull origin master
git push origin master
vundle:
mkdir -p ~/.vim/bundle
[ -d ~/.vim/bundle/vundle/.git ] || \
git clone https://github.com/gmarik/vundle.git \
~/.vim/bundle/vundle
vim: vundle
ln -fs `pwd`/vimrc ~/.vimrc
ln -fs `pwd`/vimrc_mini ~/.vimrc_mini
rm -rf ~/.vim/ftplugin
ln -fs `pwd`/vim/ftplugin ~/.vim
vim -c 'execute "BundleInstall" | q | q'
oh-my-zsh:
[ -d ~/.oh-my-zsh/.git ] || \
git clone git://github.com/robbyrussell/oh-my-zsh.git \
~/.oh-my-zsh
zsh: oh-my-zsh
ln -fs `pwd`/zshrc ~/.zshrc
ln -fs `pwd`/zshenv ~/.zshenv
rm -rf ~/.oh-my-zsh/custom
ln -fs `pwd`/oh-my-zsh/custom ~/.oh-my-zsh
xinit:
ln -fs `pwd`/xinitrc ~/.xinitrc
Xresources:
ln -fs `pwd`/Xresources ~/.Xresources
Xmodmap:
ln -fs `pwd`/Xmodmap ~/.Xmodmap
conky:
ln -fs `pwd`/conkyrc ~/.conkyrc
musca:
ln -fs `pwd`/musca_start ~/.musca_start
stalonetray:
ln -fs `pwd`/stalonetrayrc ~/.stalonetrayrc
screen:
ln -fs `pwd`/screenrc ~/.screenrc
tmux:
ln -fs `pwd`/tmux.conf ~/.tmux.conf
vimperator:
ln -fs `pwd`/vimperatorrc ~/.vimperatorrc
rm -rf ~/.vimperator
ln -fs `pwd`/vimperator ~/.vimperator
keynav:
ln -fs `pwd`/keynavrc ~/.keynavrc
dunst:
mkdir -p ~/.config/dunst
ln -fs `pwd`/dunst/dunstrc ~/.config/dunst/dunstrc
fcitx:
mkdir -p ~/.config/fcitx/rime
ln -fs `pwd`/fcitx/config ~/.config/fcitx
ln -fs `pwd`/fcitx/rime/default.custom.yaml \
~/.config/fcitx/rime
fontconfig:
mkdir -p ~/.config/fontconfig
ln -fs `pwd`/fontconfig/fonts.conf ~/.config/fontconfig
i3:
rm -rf ~/.i3
ln -fs `pwd`/i3 ~/.i3
ranger:
mkdir -p ~/.config
rm -rf ~/.config/ranger
ln -fs `pwd`/ranger ~/.config/ranger
openbox:
mkdir -p ~/.config/openbox
ln -fs `pwd`/openbox/* ~/.config/openbox