-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbootstrap
executable file
·346 lines (288 loc) · 9.9 KB
/
bootstrap
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
#!/usr/bin/env bash
# bootstrap installs things.
DOTFILES_ROOT="$HOME/.dotfiles"
set -e
show_help () { cat <<HELP
Usage: $(basename "$0") [--new-setup]
--new-setup Optional. Will prompt you to install various frameworks
Janus, Oh-My-Zsh and/or Bash-It
See the Getting Started for documentation:
https://github.com/thcipriani/dotfile-boilerplate/blob/master/docs/getting_started.md
Copyright (c) 2013 Tyler H.T. Cipriani
Licensed under the MIT license.
https://github.com/thcipriani/dotfile-boilerplate/blob/master/LICENSE
HELP
exit;
}
info () {
printf "\r[ \033[00;34m..\033[0m ] $1\n"
}
user () {
printf "\r[ \033[0;33m?\033[0m ] $1 "
}
success () {
printf "\r\033[2K[ \033[00;32mOK\033[0m ] $1\n"
}
fail () {
printf "\r\033[2K[\033[0;31mFAIL\033[0m] $1\n"
echo
exit
}
link_files () {
ln -s "$1" "$2"
success "linked $1 to $2"
}
prompt_shell () {
user "Could not detect shell type (or shell type wasn't bash or zsh). What do you want to do? [S]kip shell dotfiles, assume [b]ash dotfiles, assume [z]sh dotfiles?"
read shelltype
case "$shelltype" in
b )
SHELL='bash';;
z )
SHELL='zsh';;
* )
SHELL='';;
esac
}
check_shell () {
if [[ -n "$SHELL" ]]; then
SHELL=$(basename "$SHELL");
if [[ "$SHELL" != "bash" && "$SHELL" != "zsh" ]]; then
prompt_shell
fi
elif [[ -n "$MYSHELL" ]]; then
SHELL=$(basename "$MYSHELL");
if [[ "$SHELL" != "bash" && "$SHELL" != "zsh" ]]; then
prompt_shell
fi
else
SHELL_PATH=$(grep `whoami` /etc/passwd | cut -d ':' -f 7)
SHELL=$(basename "$SHELL_PATH")
if [[ -z "$SHELL" ]] || [[ "$SHELL" != "zsh" && "$SHELL" != "bash" ]]; then
prompt_shell
fi
fi
if ${NEW_SETUP:-false}; then
framework_check
else
install_dotfiles
fi
}
check_vimrc () {
if [[ $(cat "$DOTFILES_ROOT/vim/vimrc.symlink" | wc -l) -lt 20 ]]; then
INSTALL_JANUS=false
if [ type curl >/dev/null 2>&1 ] && [ type ack >/dev/null 2>&1 ] && [ type ctags >/dev/null 2>&1 ] && [ type git>/dev/null 2>&1 ] && [ type ruby>/dev/null 2>&1 ] && [ type rake >/dev/null 2>&1]; then
user "Your .vimrc is a bit bare. Would you like to install Janus for Vim? [y/N]"
read installit
case "$installit" in
Y*|y*) INSTALL_JANUS=true ;;
N*|n*) INSTALL_JANUS=false ;;
*) INSTALL_JANUS=false ;;
esac
if $INSTALL_JANUS ; then
curl -Lo- https://bit.ly/janus-bootstrap | bash
fi
else
info "You'll need to install curl, ack, ctags, git, ruby and rake to install JANUS"
return
fi
fi
}
oh_my_zsh_check () {
# check already installed
if [ -d "$HOME/.oh-my-zsh" ]; then
INSTALL_OH_MY=true
return
fi
user "You are using zshell. Would you like to install Oh-My-Zsh? [y/N]"
read installit
case "$installit" in
Y*|y*) INSTALL_OH_MY=true ;;
N*|n*) INSTALL_OH_MY=false ;;
*) INSTALL_OH_MY=false ;;
esac
if $INSTALL_OH_MY; then
if type git >/dev/null 2>&1; then
git clone git://github.com/sjl/oh-my-zsh.git "$HOME/.oh-my-zsh"
else
info 'git not found—skipping .oh-my-zsh install'
fi
fi
}
bash_it_check () {
# check already installed
if [ -d "$HOME/.bash_it" ]; then
INSTALL_BASH_IT=true
return
fi
user "You are using bash. Would you like to install Bash-It? [y/N]"
read installit
case "$installit" in
Y*|y*) INSTALL_BASH_IT=true ;;
N*|n*) INSTALL_BASH_IT=false ;;
*) INSTALL_BASH_IT=false ;;
esac
if $INSTALL_BASH_IT; then
if type git >/dev/null 2>&1; then
git clone http://github.com/revans/bash-it.git "$HOME/.bash_it"
"$HOME/.bash_it/install.sh"
else
info 'git not found—skipping .bash-it install'
fi
fi
}
check_bash_suffix () {
if ${INSTALL_BASH_IT:-false}; then
info 'Appending to ~/.bash_profile'
cat "$DOTFILES_ROOT/.config/bash.it.bash_profile.suffix" >> "$HOME/.bash_profile"
fi
}
install_dotfiles () {
info 'Installing dotfiles'
case "$SHELL" in
zsh )
if [[ $(uname -s) == "Linux" ]]; then
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "bash" | grep -v "osx")
elif [[ $(uname -s) == "Darwin" ]]; then
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "bash" | grep -v "linux")
else
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "bash" | grep -v "linux" | grep -v "osx")
fi
if ${INSTALL_OH_MY:-false} ; then
echo 'Uncomment .zshrc'
# Uncomment the OH-MY-ZSH section if it exists
if [[ $(uname -s) == "Darwin" ]]; then
sed -i '.backup' '/^##~OH-MY-ZSH~#$/,/^##~\/OH-MY-ZSH~#$/s/^#//' "$DOTFILES_ROOT/zsh/zshrc.symlink"
elif [[ $(uname -s) == "Linux" ]]; then
sed -i'.backup' '/^##~OH-MY-ZSH~#$/,/^##~\/OH-MY-ZSH~#$/s/^#//' "$DOTFILES_ROOT/zsh/zshrc.symlink"
fi
fi
;;
bash )
if [[ $(uname -s) == "Linux" ]]; then
if ${INSTALL_BASH_IT:-false}; then
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "bash" | grep -v "osx" | grep -v "zsh")
else
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "osx" | grep -v "zsh")
fi
elif [[ $(uname -s) == "Darwin" ]]; then
if ${INSTALL_BASH_IT:-false}; then
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "bash" | grep -v "linux" | grep -v "zsh")
else
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "linux" | grep -v "zsh")
fi
else
if ${INSTALL_BASH_IT:-false}; then
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "bash" | grep -v "linux" | grep -v "osx" | grep -v "zsh")
else
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "linux" | grep -v "osx" | grep -v "zsh")
fi
fi
;;
* )
if [[ $(uname -s) == "Linux" ]]; then
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "bash" | grep -v "osx" | grep -v "zsh")
elif [[ $(uname -s) == "Darwin" ]]; then
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "bash" | grep -v "linux" | grep -v "zsh")
else
files=$(find "$DOTFILES_ROOT" -maxdepth 2 -name \*.symlink -print | grep -v "bash" | grep -v "linux" | grep -v "osx" | grep -v "zsh")
fi
;;
esac
overwrite_all=false
backup_all=false
skip_all=false
for source in $files; do
file_base=$(basename "${source%.*}")
if ${INSTALL_JANUS:-false} ; then
if [[ "$file_base" =~ ^vim ]]; then
continue;
fi
fi
dest="$HOME/.$file_base"
if [ -h "$dest" ] && [ $(readlink "$dest") = $source ]; then
continue;
fi
if [ -f "$dest" ] || [ -d "$dest" ]; then
overwrite=false
backup=false
skip=false
if [[ ${INSTALL_OH_MY:-false} && "$file_base" =~ ^zshrc ]]; then
overwrite=true;
fi
if [ "$overwrite_all" == "false" ] && [ "$backup_all" == "false" ] && [ "$skip_all" == "false" ] && [ "$overwrite" == "false" ]; then
user "File already exists: $(basename "$dest"), what do you want to do? [s]kip, [S]kip all, [o]verwrite, [O]verwrite all, [b]ackup, [B]ackup all?"
read action
case "$action" in
o )
overwrite=true;;
O )
overwrite_all=true;;
b )
backup=true;;
B )
backup_all=true;;
s )
skip=true;;
S )
skip_all=true;;
* )
;;
esac
fi
if [ "$overwrite" == "true" ] || [ "$overwrite_all" == "true" ]; then
rm -rf "$dest"
success "removed $dest"
fi
if [ "$backup" == "true" ] || [ "$backup_all" == "true" ]; then
mv "$dest" "$dest"\.backup
success "moved $dest to $dest.backup"
fi
if [ "$skip" == "false" ] && [ "$skip_all" == "false" ]; then
link_files "$source" "$dest"
else
success "skipped $source"
fi
else
link_files "$source" "$dest"
fi
done
check_bash_suffix
restart_shell
}
framework_check () {
if [[ $SHELL == 'zsh' ]]; then
oh_my_zsh_check
elif [[ $SHELL == 'bash' ]]; then
bash_it_check
fi
# Check for Janus install
check_vimrc
install_dotfiles
}
restart_shell () {
exec "$(which $SHELL)" -l
info "enjoy!"
}
if [[ "$1" != '' ]]; then
case "$1" in
"--new-setup" )
NEW_SETUP=true
;;
"--help"|"-h" )
show_help
;;
* )
echo -e "Unknown option: $1\n"
show_help
;;
esac
fi
echo
unset $INSTALL_OH_MY
unset $INSTALL_BASH_IT
unset $INSTALL_JANUS
# Initialize
check_shell
echo
echo 'All installed!'