-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost_install.sh
More file actions
406 lines (373 loc) · 9.98 KB
/
Copy pathpost_install.sh
File metadata and controls
406 lines (373 loc) · 9.98 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
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
#!/usr/bin/env bash
#
# Phenates; v0.5
# Postinstall script: packages installation, zsh shell & oh-my-zsh instalation, dotfiles management by chezmoi.
# Run: bash -c "$(wget https://raw.githubusercontent.com/phenates/bash_script/master/post_install.sh)" -i
#Variables:
ME=$(basename "$0")
SCRIPT_DIR="https://github.com/phenates/bash_script/archive/refs/heads/master.zip"
CHEZMOI_GITHUB_URL="https://github.com/phenates/chezmoi.git"
PACKAGES=("exa" "tree" "unzip" "git")
#######################################
# Terminal output helpers
#######################################
# echo_header() outputs a title padded by =, in yellow.
function echo_header() {
TITLE="$ME > $1"
NCOLS=$(tput cols)
NEQUALS=$(((NCOLS - ${#TITLE}) / 2 - 1))
echo ""
tput setaf 3 # 3 = yellow
COUNTER=0
while [ $COUNTER -lt "$NEQUALS" ]; do
printf '/'
((COUNTER = COUNTER + 1))
done
printf " %s " "$TITLE"
COUNTER=0
while [ $COUNTER -lt "$NEQUALS" ]; do
printf '\'
((COUNTER = COUNTER + 1))
done
tput sgr0 # reset terminal
echo
}
# echo_step() outputs a step collored in cyan, with newline.
function echo_step() {
tput setaf 6 # 6 = cyan
echo ""
echo "$1"
tput sgr0 # reset terminal
}
# echo_step_info() outputs additional step info in cyan, with newline.
function echo_step_info() {
tput setaf 6 # 6 = cyan
echo ""
echo "--> $1"
tput sgr0 # reset terminal
}
# echo_step_info() outputs additional step info in cyan, with newline.
function echo_ask() {
tput setaf 6 # 6 = cyan
read -r -p "> $1 "
tput sgr0 # reset terminal
}
function echo_failure() {
local txt="${1:-}"
tput setaf 1 # 1 = red
echo -e " [ FAILED ] $txt"
tput sgr0 # reset terminal
}
# shellcheck disable=SC2120
function echo_success() {
local txt="${1:-}"
tput setaf 2 # 2 = green
echo " [ OK ] $txt"
tput sgr0 # reset terminal
}
function echo_canceled() {
local txt="${1:-}"
tput setaf 3 # 3 = yellow
echo -e " [ CANCELED ] $txt"
tput sgr0 # reset terminal
}
#######################################
# Show script usage.
# Arguments: Options
#######################################
usage() {
echo "post_install.sh usage: $ME [OPTIONS]"
echo "Options:"
echo " --install: Install personal configuration"
echo " --remove: Remove personal configuration"
echo " --help: Display usage"
}
#######################################
# Check if sudo.
#######################################
sudo_check() {
echo_step "Checking sudo privileges"
# shellcheck disable=SC2034
# shellcheck disable=SC2155
local temp
temp=$(sudo -nv 2>&1)
if [ $? != 0 ]; then
echo_failure "$ME should be run with sudo privileges.\n As root, install sudo package and/or add $USER user in the sudo group (command: sudo adduser <username> sudo)"
exit 1
fi
echo_success
}
#######################################
# Check if root or exit
#######################################
root_check() {
echo_step "Checking root privileges"
if [[ $(id -u) != 0 ]]; then
echo_failure "$ME should be run as root"
exit 1
fi
echo_success
}
#######################################
# Packages installation from $PACKAGES.
#######################################
package_inst() {
echo_step "Packages instalation:"
echo_ask "Continue [y]/[n] ?"
case $REPLY in
[yY])
echo_step_info "Package update"
sudo apt update -y
echo_step_info "Package upgrade"
sudo apt update -y
echo_step_info "Package installation"
for i in "${PACKAGES[@]}"; do
echo_step_info "$i install"
sudo apt install "$i" -y
echo_success
done
;;
[nN])
echo_canceled "by user"
return 1
;;
*)
echo_failure "Please answer yes or no."
return 1
;;
esac
}
#######################################
# zsh shell and ohmyzsh installation.
#######################################
zsh_inst() {
echo_step "Zsh shell & oh-my-zsh plugin installation:"
echo_ask "Continue [y]/[n] ?"
case $REPLY in
[yY])
if [[ ! $(zsh --version) ]]; then
echo_step_info "zsh package"
sudo apt install zsh fonts-powerline
echo_success
else
echo_step_info "zsh already installed"
echo_success
fi
if [[ ! -d "$HOME/.oh-my-zsh" ]]; then
echo_step_info "Install oh-my-zsh"
sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" "" --unattended
echo_success
else
echo_step_info "ohmyzsh already installed"
fi
echo_ask "Change your default shell to zsh? [Y/n]"
if [[ $REPLY == [yY] ]]; then
chsh -s $(which zsh)
fi
echo_success
;;
[nN])
echo_canceled "by user"
return 1
;;
*)
echo_failure "Please answer yes or no."
return 1
;;
esac
}
#######################################
# Dotfiles management with chezmoi package.
#######################################
dotfiles_inst() {
echo_step "Dotfiles management with chezmoi package:"
echo_ask "Continue [y]/[n] ?"
case $REPLY in
[yY])
if [[ $(apt-cache show chezmoi) != 0 ]]; then
echo_step_info "Install chezmoi package"
sh -c "$(wget -qO- get.chezmoi.io)"
echo_success
else
echo_step_info "chezmoi already installed"
fi
echo_step_info "chezmoi init and apply dotfiles configurations"
chezmoi init --apply ${CHEZMOI_GITHUB_URL}
echo_success
;;
[nN])
echo_canceled "by user"
return 1
;;
*)
echo_failure "Please answer yes or no."
return 1
;;
esac
}
#######################################
# User prompt .bashrc file configuration
#######################################
# user_bashrc_conf() {
# echo_step "Configuration of $USER .bashrc file:"
# echo_ask "Continue [y]/[n] ?"
# case $REPLY in
# [yY])
# # Test .bashrc or .bashrc.bak file exist
# if [[ ! -f "$HOME/.bashrc" || -f "$HOME/.bashrc.bak" ]]; then
# echo_failure "No .bashrc or existing .bashrc.bak file backup found in $HOME."
# return 1
# fi
# # Backup previous .bashrc file
# echo_step_info "Backup previous .bashrc file to $HOME/.bashrc.bak"
# cp "$HOME/.bashrc" "$HOME/.bashrc.bak"
# echo_success
# # Update .bashrc file
# echo_step_info "Updating current .bashrc file"
# sed -i 's/#force_color_prompt=yes/force_color_prompt=yes/g' "$HOME/.bashrc"
# {
# echo ""
# echo ""
# echo "# Custom part.:"
# echo "export PATH='$HOME/bash_script:$PATH'"
# echo "bind -s 'set completion-ignore-case on'"
# # shellcheck disable=SC2028
# echo 'PS1="\[\e[38;5;34m\]\u\[\e[38;5;244m\]@\[\e[38;5;214m\]\h \[\e[38;5;129m\]\w \[\033[0m\]$ "'
# echo "alias ..='cd ..'"
# echo "alias ll='ls -lah'"
# echo "alias sys='systemctl'"
# } >>"$HOME/.bashrc"
# echo_success "!!! To update prompt, use command: 'source .bashrc' or reconnect user"
# ;;
# [nN])
# echo_canceled "by user"
# return 1
# ;;
# *)
# echo_failure "Please answer y or n."
# return 1
# ;;
# esac
# }
#######################################
# User .nanorc file configuration
#######################################
# user_nano_conf() {
# echo_step "Configuration of .nanorc file for $USER:"
# echo_ask "Continue [y]/[n] ?"
# case $REPLY in
# [yY])
# # Test .nanorc or .nanorc.bak file exist
# if [[ -f "$HOME/.nanorc" ]]; then
# echo_failure ".nanorc file already existing."
# return 1
# fi
# # Create .nanorc file based on /etc/nanorc
# echo_step_info "Create $HOME/.nanorc based on /etc/nanorc"
# cp /etc/nanorc "$HOME/.nanorc"
# echo_success
# # Update .bashrc file
# echo_step_info "Updating $HOME/.nanorc file"
# sed -i 's/# set autoindent/set autoindent/g' "$HOME/.nanorc"
# sed -i 's/# set indicator/set indicator/g' "$HOME/.nanorc"
# sed -i 's/# set positionlog/set positionlog/g' "$HOME/.nanorc"
# {
# echo include "/usr/share/nano/*.nanorc"
# } >>"$HOME/.nanorc"
# echo_success
# ;;
# [nN])
# echo_canceled "by user"
# return 1
# ;;
# *)
# echo_failure "Please answer y or n."
# return 1
# ;;
# esac
# }
#######################################
# Import & copy some script.
#######################################
script_import() {
echo_step "Script import"
echo_ask "Continue [y]/[n] ?"
case $REPLY in
[yY])
# Test bash_script directory
if [[ -d "$HOME/bash_script" ]]; then
echo_failure "bash_script directory already existing."
return 1
fi
# import & copy bash_script directory
wget $SCRIPT_DIR -P /tmp
unzip /tmp/master.zip -d /tmp
cp -r /tmp/bash_script-master /$HOME/bash_script
rm -r /tmp/master.zip /tmp/bash_script-master
echo_success
;;
[nN])
echo_canceled "by user"
return 1
;;
*)
echo_failure "Please answer y or n."
return 1
;;
esac
}
#######################################
# Uninstall script, remove packages & .bashrc modification.
#######################################
# remove() {
# echo_step "Restore .bashrc file"
# if [[ -f "$HOME/.bashrc.bak" ]]; then
# cp -vf "$HOME/.bashrc.bak" "$HOME/.bashrc"
# rm "$HOME/.bashrc.bak"
# echo_success
# else
# echo_failure "No $HOME/.bashrc.bak file found, .bashrc restoration canceled"
# fi
# if [[ -f "$HOME/.nanorc" ]]; then
# echo_step "Restore nano configuration"
# rm "$HOME/.nanorc"
# echo_success
# fi
# for i in "${PACKAGES[@]}"; do
# echo_step_info "Uninstall $i package"
# sudo apt remove "$i" -y
# echo_success
# done
# if [[ -d "$HOME/bash_script" ]]; then
# echo_step "Delete $HOME/bash_script directory"
# rm -r "$HOME/bash_script"
# echo_success
# fi
# }
#######################################
# Main function
#######################################
main() {
echo_header $1
case "$1" in
-h | --help)
usage
;;
-i | --install)
sudo_check
package_inst
zsh_inst
dotfiles_inst
echo_step "Log out and log back in again to use your new default shell..."
;;
-r | --remove)
remove
;;
-t) ;;
*)
usage
;;
esac
echo_header "END"
}
main "$*"