forked from wookayin/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.py
executable file
·412 lines (350 loc) · 14 KB
/
install.py
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
@wookayin's ███████╗██╗██╗ ███████╗███████╗
██████╗ █████╗ ████████╗██╔════╝██║██║ ██╔════╝██╔════╝
██╔══██╗██╔══██╗╚══██╔══╝█████╗ ██║██║ █████╗ ███████╗
██║ ██║██║ ██║ ██║ ██╔══╝ ██║██║ ██╔══╝ ╚════██║
██████╔╝╚█████╔╝ ██║ ██║ ██║███████╗███████╗███████║
╚═════╝ ╚════╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝
https://dotfiles.wook.kr/
'''
print(__doc__) # print logo.
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('-f', '--force', action="store_true", default=False,
help='If set, it will override existing symbolic links')
parser.add_argument('--skip-vimplug', action='store_true',
help='If set, do not update vim plugins.')
parser.add_argument('--skip-zgen', '--skip-zplug', action='store_true',
help='If set, skip zgen updates.')
args = parser.parse_args()
################# BEGIN OF FIXME #################
# Task Definition
# (path of target symlink) : (location of source file in the repository)
tasks = {
# SHELLS
'~/.bashrc' : 'bashrc',
'~/.screenrc' : 'screenrc',
# VIM
'~/.vimrc' : 'vim/vimrc',
'~/.vim' : 'vim',
'~/.vim/autoload/plug.vim' : 'vim/bundle/vim-plug/plug.vim',
# NeoVIM
'~/.config/nvim' : 'nvim',
# GIT
'~/.gitconfig' : 'git/gitconfig',
'~/.gitignore' : 'git/gitignore',
# ZSH
'~/.zgen' : 'zsh/zgen',
'~/.zsh' : 'zsh',
'~/.zlogin' : 'zsh/zlogin',
'~/.zlogout' : 'zsh/zlogout',
'~/.zpreztorc': 'zsh/zpreztorc',
'~/.zprofile' : 'zsh/zprofile',
'~/.zshenv' : 'zsh/zshenv',
'~/.zshrc' : 'zsh/zshrc',
# Bins
'~/.local/bin/dotfiles' : 'bin/dotfiles',
'~/.local/bin/fasd' : 'zsh/fasd/fasd',
'~/.local/bin/is_mosh' : 'zsh/is_mosh/is_mosh',
'~/.local/bin/fzf' : '~/.fzf/bin/fzf', # fzf is at $HOME/.fzf
# X
'~/.Xmodmap' : 'Xmodmap',
# GTK
'~/.gtkrc-2.0' : 'gtkrc-2.0',
# kitty
'~/.config/kitty/kitty.conf': 'config/kitty/kitty.conf',
# tmux
'~/.tmux' : 'tmux',
'~/.tmux.conf' : 'tmux/tmux.conf',
# .config (XDG-style)
'~/.config/terminator' : 'config/terminator',
'~/.config/pudb/pudb.cfg' : 'config/pudb/pudb.cfg',
'~/.config/fsh/wook.ini' : 'config/fsh/wook.ini',
# pip and python
#'~/.pip/pip.conf' : 'pip/pip.conf',
'~/.pythonrc.py' : 'python/pythonrc.py',
'~/.pylintrc' : 'python/pylintrc',
'~/.condarc' : 'python/condarc',
'~/.config/pycodestyle' : 'python/pycodestyle',
'~/.ptpython/config.py' : 'python/ptpython.config.py',
}
try:
from distutils.spawn import find_executable
except ImportError:
# In some environments, distutils might not be available.
import sys
sys.stderr.write("WARNING: distutils not available\n")
find_executable = lambda _: False # type: ignore
post_actions = []
post_actions += [
'''#!/bin/bash
# Check whether ~/.vim and ~/.zsh are well-configured
for f in ~/.vim ~/.zsh ~/.vimrc ~/.zshrc; do
if ! readlink $f >/dev/null; then
echo -e "\033[0;31m\
WARNING: $f is not a symbolic link to ~/.dotfiles.
Please remove your local folder/file $f and try again.\033[0m"
echo -n "(Press any key to continue) "; read user_confirm
exit 1;
else
echo "$f --> $(readlink $f)"
fi
done
''']
post_actions += [
'''#!/bin/bash
# Download command line scripts
mkdir -p "$HOME/.local/bin/"
_download() {
curl -L "$2" > "$1" && chmod +x "$1"
}
ret=0
set -v
_download "$HOME/.local/bin/video2gif" "https://raw.githubusercontent.com/wookayin/video2gif/master/video2gif" || ret=1
exit $ret;
''']
post_actions += [
'''#!/bin/bash
# Update zgen modules and cache (the init file)
zsh -c "
# source zplug and list plugins
DOTFILES_UPDATE=1 __p9k_instant_prompt_disabled=1 source ${HOME}/.zshrc
if ! which zgen > /dev/null; then
echo -e '\033[0;31m\
ERROR: zgen not found. Double check the submodule exists, and you have a valid ~/.zshrc!\033[0m'
ls -alh ~/.zsh/zgen/
ls -alh ~/.zshrc
exit 1;
fi
zgen reset
zgen update
"
''' if not args.skip_zgen else \
'# zgen update (Skipped)'
]
post_actions += [
'''#!/bin/bash
# validate neovim package installation on python2/3 and automatically install if missing
bash "etc/install-neovim-py.sh"
''']
vim = 'nvim' if find_executable('nvim') else 'vim'
post_actions += [
# Run vim-plug installation
{'install' : '{vim} +PlugInstall +qall'.format(vim=vim),
'update' : '{vim} +PlugUpdate +qall'.format(vim=vim),
'none' : '# {vim} +PlugUpdate (Skipped)'.format(vim=vim)
}['update' if not args.skip_vimplug else 'none']
]
post_actions += [
# Install tmux plugins via tpm
'~/.tmux/plugins/tpm/bin/install_plugins',
r'''#!/bin/bash
# Check tmux version >= 2.3 (or use `dotfiles install tmux`)
_version_check() { # target_ver current_ver
[ "$1" = "$(echo -e "$1\n$2" | sort -s -t- -k 2,2n | sort -t. -s -k 1,1n -k 2,2n | head -n1)" ]
}
if ! _version_check "2.3" "$(tmux -V | cut -d' ' -f2)"; then
echo -en "\033[0;33m"
echo -e "$(tmux -V) is too old. Contact system administrator, or:"
echo -e " $ dotfiles install tmux \033[0m (installs to ~/.local/, if you don't have sudo)"
exit 1;
else
echo "$(which tmux): $(tmux -V)"
fi
''']
post_actions += [
r'''#!/bin/bash
# Setting up for coc.nvim (~/.config/coc, node.js)
# (i) create ~/.config/coc directory if not exists
GREEN="\033[0;32m"; YELLOW="\033[0;33m"; RESET="\033[0m";
coc_dir="$HOME/.config/coc/"
if [ ! -d "$coc_dir" ]; then
mkdir -p "$coc_dir" || exit 1;
echo "Created: $coc_dir"
else
echo -e "${GREEN}coc directory:${RESET} $coc_dir"
fi
# (ii) validate or auto-install node.js locally
bash "etc/install-node.sh" || exit 1;
''']
post_actions += [
r'''#!/bin/bash
# Change default shell to zsh
/bin/zsh --version >/dev/null || (\
echo -e "\033[0;31mError: /bin/zsh not found. Please install zsh.\033[0m"; exit 1)
if [[ ! "$SHELL" = *zsh ]]; then
echo -e '\033[0;33mPlease type your password if you wish to change the default shell to ZSH\e[m'
chsh -s /bin/zsh && echo -e 'Successfully changed the default shell, please re-login'
else
echo -e "\033[0;32m\$SHELL is already zsh.\033[0m $(zsh --version)"
fi
''']
post_actions += [
r'''#!/bin/bash
# Create ~/.gitconfig.secret file and check user configuration
if [ ! -f ~/.gitconfig.secret ]; then
cat > ~/.gitconfig.secret <<EOL
# vim: set ft=gitconfig:
EOL
fi
if ! git config --file ~/.gitconfig.secret user.name 2>&1 > /dev/null || \
! git config --file ~/.gitconfig.secret user.email 2>&1 > /dev/null; then echo -ne '
\033[1;33m[!!!] Please configure git user name and email:
git config --file ~/.gitconfig.secret user.name "(YOUR NAME)"
git config --file ~/.gitconfig.secret user.email "(YOUR EMAIL)"
\033[0m'
echo -en '\n'
echo -en "(git config user.name) \033[0;33m Please input your name : \033[0m"; read git_username
echo -en "(git config user.email)\033[0;33m Please input your email : \033[0m"; read git_useremail
if [[ -n "$git_username" ]] && [[ -n "$git_useremail" ]]; then
git config --file ~/.gitconfig.secret user.name "$git_username"
git config --file ~/.gitconfig.secret user.email "$git_useremail"
else
exit 1; # error
fi
fi
# get the current config
echo -en '\033[0;32m';
echo -en 'user.name : '; git config --file ~/.gitconfig.secret user.name
echo -en 'user.email : '; git config --file ~/.gitconfig.secret user.email
echo -en '\033[0m';
''']
################# END OF FIXME #################
def _wrap_colors(ansicode):
return (lambda msg: ansicode + str(msg) + '\033[0m')
GRAY = _wrap_colors("\033[0;37m")
WHITE = _wrap_colors("\033[1;37m")
RED = _wrap_colors("\033[0;31m")
GREEN = _wrap_colors("\033[0;32m")
YELLOW = _wrap_colors("\033[0;33m")
CYAN = _wrap_colors("\033[0;36m")
BLUE = _wrap_colors("\033[0;34m")
import os
import sys
import subprocess
from signal import signal, SIGPIPE, SIG_DFL
from sys import stderr
if sys.version_info[0] >= 3: # python3
unicode = lambda s, _: str(s)
from builtins import input
else: # python2
input = sys.modules['__builtin__'].raw_input
def log(msg, cr=True):
stderr.write(msg)
if cr:
stderr.write('\n')
def log_boxed(msg, color_fn=WHITE, use_bold=False, len_adjust=0):
import unicodedata
pad_msg = (" " + msg + " ")
l = sum(not unicodedata.combining(ch) for ch in unicode(pad_msg, 'utf-8')) + len_adjust
if use_bold:
log(color_fn("┏" + ("━" * l) + "┓\n" +
"┃" + pad_msg + "┃\n" +
"┗" + ("━" * l) + "┛\n"), cr=False)
else:
log(color_fn("┌" + ("─" * l) + "┐\n" +
"│" + pad_msg + "│\n" +
"└" + ("─" * l) + "┘\n"), cr=False)
def makedirs(target, mode=511, exist_ok=False):
try:
os.makedirs(target, mode=mode)
except OSError as ex: # py2 has no exist_ok=True
import errno
if ex.errno == errno.EEXIST and exist_ok: pass
else: raise
# get current directory (absolute path)
current_dir = os.path.abspath(os.path.dirname(__file__))
os.chdir(current_dir)
# check if git submodules are loaded properly
stat = subprocess.check_output("git submodule status --recursive",
shell=True, universal_newlines=True)
submodule_issues = [(l.split()[1], l[0]) for l in stat.split('\n') if len(l) and l[0] != ' ']
if submodule_issues:
stat_messages = {'+': 'needs update', '-': 'not initialized', 'U': 'conflict!'}
for (submodule_name, submodule_stat) in submodule_issues:
log(RED("git submodule {name} : {status}".format(
name=submodule_name,
status=stat_messages.get(submodule_stat, '(Unknown)'))))
log(RED(" you may run: $ git submodule update --init --recursive"))
log("")
log(YELLOW("Do you want to update submodules? (y/n) "), cr=False)
shall_we = (input().lower() == 'y')
if shall_we:
git_submodule_update_cmd = 'git submodule update --init --recursive'
# git 2.8+ supports parallel submodule fetching
try:
git_version = str(subprocess.check_output("""git --version | awk '{print $3}'""", shell=True))
if git_version >= '2.8': git_submodule_update_cmd += ' --jobs 8'
except Exception as ex:
pass
log("Running: %s" % BLUE(git_submodule_update_cmd))
subprocess.call(git_submodule_update_cmd, shell=True)
else:
log(RED("Aborted."))
sys.exit(1)
log_boxed("Creating symbolic links", color_fn=CYAN)
for target, source in sorted(tasks.items()):
# normalize paths
source = os.path.join(current_dir, os.path.expanduser(source))
target = os.path.expanduser(target)
# bad entry if source does not exists...
if not os.path.lexists(source):
log(RED("source %s : does not exist" % source))
continue
# if --force option is given, delete and override the previous symlink
if os.path.lexists(target):
is_broken_link = os.path.islink(target) and not os.path.exists(os.readlink(target))
if args.force or is_broken_link:
if os.path.islink(target):
os.unlink(target)
else:
log("{:50s} : {}".format(
BLUE(target),
YELLOW("already exists but not a symbolic link; --force option ignored")
))
else:
log("{:50s} : {}".format(
BLUE(target),
GRAY("already exists, skipped") if os.path.islink(target) \
else YELLOW("exists, but not a symbolic link. Check by yourself!!")
))
# make a symbolic link if available
if not os.path.lexists(target):
mkdir_target = os.path.split(target)[0]
makedirs(mkdir_target, exist_ok=True)
log(GREEN('Created directory : %s' % mkdir_target))
os.symlink(source, target)
log("{:50s} : {}".format(
BLUE(target),
GREEN("symlink created from '%s'" % source)
))
errors = []
for action in post_actions:
if not action:
continue
action_title = action.strip().split('\n')[0].strip()
if action_title == '#!/bin/bash':
action_title = action.strip().split('\n')[1].strip()
log("\n", cr=False)
log_boxed("Executing: " + action_title, color_fn=CYAN)
ret = subprocess.call(['bash', '-c', action],
preexec_fn=lambda: signal(SIGPIPE, SIG_DFL))
if ret:
errors.append(action_title)
log("\n")
if errors:
log_boxed("You have %3d warnings or errors -- check the logs!" % len(errors),
color_fn=YELLOW, use_bold=True)
for e in errors:
log(" " + YELLOW(e))
log("\n")
else:
log_boxed("✔ You are all set! ",
color_fn=GREEN, use_bold=True)
log("- Please restart shell (e.g. " + CYAN("`exec zsh`") + ") if necessary.")
log("- To install some packages locally (e.g. neovim, tmux), try " + CYAN("`dotfiles install <package>`"))
log("- If you want to update dotfiles (or have any errors), try " + CYAN("`dotfiles update`"))
log("\n\n", cr=False)
sys.exit(len(errors))