forked from Bash-it/bash-it
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·333 lines (298 loc) · 10.5 KB
/
install.sh
File metadata and controls
executable file
·333 lines (298 loc) · 10.5 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
#!/usr/bin/env bash
# bash-it installer
# Requires bash 3.2+ to install and run
# Skip loading if bash version is too old
if [[ "${BASH_VERSINFO[0]-}" -lt 3 ]] || [[ "${BASH_VERSINFO[0]-}" -eq 3 && "${BASH_VERSINFO[1]}" -lt 2 ]]; then
echo "sorry, but the minimum version of BASH supported by bash_it is 3.2, consider upgrading?" >&2
return 1
fi
# Show how to use this installer
function _bash-it-install-help() {
echo -e "\n$0 : Install bash-it"
echo -e "Usage:\n$0 [arguments] \n"
echo "Arguments:"
echo "--help (-h): Display this help message"
echo "--silent (-s): Install default settings without prompting for input"
echo "--interactive (-i): Interactively choose plugins"
echo "--no-modify-config (-n): Do not modify existing config file"
echo "--append-to-config (-a): Keep existing config file and append bash-it templates at the end"
echo "--overwrite-backup (-f): Overwrite existing backup"
}
# Interactively enable several things
function _bash-it-install-enable() {
local file_type single_type enable_func file_name just_the_name RESP
file_type=$1
single_type=$(echo "$file_type" | sed -e "s/aliases$/alias/g" | sed -e "s/plugins$/plugin/g")
enable_func="_enable-$single_type"
for path in "${BASH_IT?}/${file_type}/available/"[^_]*; do
file_name="${path##*/}"
while true; do
just_the_name="${file_name%".${file_type}.bash"}"
read -r -e -n 1 -p "Would you like to enable the $just_the_name $file_type? [y/N] " RESP
case $RESP in
[yY])
"$enable_func" "$just_the_name"
break
;;
[nN] | "")
break
;;
*)
echo -e "${echo_orange:-}Please choose y or n.${echo_normal:-}"
;;
esac
done
done
}
# Ensure .bashrc is sourced from profile files on macOS/BSD/Solaris
function _bash-it-install-ensure-bashrc-sourcing() {
# Only needed on platforms where login shells don't source .bashrc
case "$(uname -s)" in
Darwin | SunOS | Illumos | *BSD) ;;
*) return 0 ;; # Not needed on Linux
esac
# Find which profile file exists
local profile_file
if [[ -f "$HOME/.bash_profile" ]]; then
profile_file="$HOME/.bash_profile"
elif [[ -f "$HOME/.profile" ]]; then
profile_file="$HOME/.profile"
else
# No profile file exists, create .bash_profile
profile_file="$HOME/.bash_profile"
echo -e "${echo_yellow:-}Creating $profile_file to source .bashrc${echo_normal:-}"
fi
# Check if already sourced (reuse helper from doctor)
if _bash-it-doctor-check-profile-sourcing-grep "$profile_file" 2> /dev/null; then
return 0 # Already configured
fi
# Not sourced, offer to add it
echo ""
echo -e "${echo_yellow:-}Warning: .bashrc is not sourced from $profile_file${echo_normal:-}"
echo "On macOS/BSD/Solaris, login shells won't load bash-it without this."
echo ""
local RESP
if [[ -z "${silent:-}" ]]; then
read -r -e -n 1 -p "Would you like to add .bashrc sourcing to $profile_file? [Y/n] " RESP
case $RESP in
[nN])
echo ""
echo -e "${echo_orange:-}Skipping. You can add this manually later:${echo_normal:-}"
echo ""
echo " if [ -n \"\${BASH_VERSION-}\" ]; then"
echo " if [ -f \"\$HOME/.bashrc\" ]; then"
echo " . \"\$HOME/.bashrc\""
echo " fi"
echo " fi"
echo ""
return 0
;;
esac
fi
# Backup profile file if it exists
if [[ -f "$profile_file" ]]; then
local backup_file
backup_file="${profile_file}.bak.$(date +%Y%m%d_%H%M%S)"
command cp "$profile_file" "$backup_file"
echo -e "${echo_green:-}Backed up $profile_file to $backup_file${echo_normal:-}"
fi
# Add the sourcing snippet
cat >> "$profile_file" << 'EOF'
# Source .bashrc if running bash
if [ -n "${BASH_VERSION-}" ]; then
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
EOF
echo -e "${echo_green:-}✓ Added .bashrc sourcing to $profile_file${echo_normal:-}"
echo ""
}
# Back up existing profile
function _bash-it-install-backup-config() {
test -w "${HOME?}/${CONFIG_FILE?}" \
&& cp -aL "${HOME?}/${CONFIG_FILE?}" "${HOME?}/${CONFIG_FILE?}.bak" \
&& echo -e "${echo_green:-}Your original ${CONFIG_FILE?} has been backed up to ${CONFIG_FILE?}.bak${echo_normal:-}"
}
# Back up existing profile and create new one for bash-it
function _bash-it-install-backup-new() {
_bash-it-install-backup-config
sed "s|{{BASH_IT}}|${BASH_IT?}|" "${BASH_IT?}/template/bashrc.template.bash" > "${HOME?}/${CONFIG_FILE?}"
echo -e "${echo_green:-}Copied the template ${CONFIG_FILE?} into ~/${CONFIG_FILE?}, edit this file to customize bash-it${echo_normal:-}"
}
# Back up existing profile and append bash-it templates at the end
function _bash-it-install-backup-append() {
_bash-it-install-backup-config
(sed "s|{{BASH_IT}}|${BASH_IT?}|" "${BASH_IT?}/template/bashrc.template.bash" | tail -n +2) >> "${HOME?}/${CONFIG_FILE?}"
echo -e "${echo_green:-}Bash-it template has been added to your ${CONFIG_FILE?}${echo_normal:-}"
}
function _bash-it-install-backup-check() {
if ! [[ -e "${HOME?}/$BACKUP_FILE" ]]; then
return
fi
echo -e "${echo_yellow:-}Backup file already exists. Make sure to backup your .bashrc before running this installation.${echo_normal:-}" >&2
if [[ -z "${overwrite_backup:-}" ]]; then
while [[ -z "${silent:-}" ]]; do
read -e -n 1 -r -p "Would you like to overwrite the existing backup? This will delete your existing backup file ($HOME/$BACKUP_FILE) [y/N] " RESP
case $RESP in
[yY])
overwrite_backup=true
break
;;
[nN] | "")
break
;;
*)
echo -e "${echo_orange:-}Please choose y or n.${echo_normal:-}"
;;
esac
done
fi
if [[ -z "${overwrite_backup:-}" ]]; then
echo -e "${echo_orange:-}Installation aborted. Please come back soon!${echo_normal:-}"
if [[ -n "${silent:-}" ]]; then
echo -e "${echo_orange:-}Use \"-f\" flag to force overwrite of backup.${echo_normal:-}"
fi
exit 1
else
echo -e "${echo_green:-}Overwriting backup...${echo_normal:-}"
fi
}
function _bash-it-install-modify-config() {
_bash-it-install-backup-check
if [[ -z "${silent:-}" ]]; then
while [[ -z "${append_to_config:-}" ]]; do
read -e -n 1 -r -p "Would you like to keep your $CONFIG_FILE and append bash-it templates at the end? [y/N] " choice
case $choice in
[yY])
append_to_config=true
break
;;
[nN] | "")
break
;;
*)
echo -e "${echo_orange:-}Please choose y or n.${echo_normal:-}"
;;
esac
done
fi
if [[ -n "${append_to_config:-}" ]]; then
# backup/append
_bash-it-install-backup-append
else
# backup/new by default
_bash-it-install-backup-new
fi
_bash-it-install-modify-profile
}
function _bash-it-install-modify-profile() {
local choice profile_string=$'if [[ $- == *i* && -s ~/.bashrc ]]; then\n\tsource ~/.bashrc\nfi'
if [[ ! -f ~/.bash_profile ]]; then
printf '%s\n' "${profile_string}" > ~/.bash_profile
else
printf "${echo_yellow:-}%s${echo_normal:-}" "You may need to update your ~/.bash_profile (or ~/.profile) to source your ~/.bashrc:"
printf '%s\n' "${profile_string}"
fi
}
for param in "$@"; do
shift
case "$param" in
"--help") set -- "$@" "-h" ;;
"--silent") set -- "$@" "-s" ;;
"--interactive") set -- "$@" "-i" ;;
"--no-modify-config") set -- "$@" "-n" ;;
"--append-to-config") set -- "$@" "-a" ;;
"--overwrite-backup") set -- "$@" "-f" ;;
*) set -- "$@" "$param" ;;
esac
done
OPTIND=1
while getopts "hsinaf" opt; do
case "$opt" in
"h")
_bash-it-install-help
exit 0
;;
"s") silent=true ;;
"i") interactive=true ;;
"n") no_modify_config=true ;;
"a") append_to_config=true ;;
"f") overwrite_backup=true ;;
"?")
_bash-it-install-help >&2
exit 1
;;
esac
done
shift $((OPTIND - 1))
if [[ -n "${silent:-}" && -n "${interactive:-}" ]]; then
echo -e "${echo_orange:-}Options --silent and --interactive are mutually exclusive. Please choose one or the other.${echo_normal:-}"
exit 1
fi
if [[ -n "${no_modify_config:-}" && -n "${append_to_config:-}" ]]; then
echo -e "${echo_orange:-}Options --no-modify-config and --append-to-config are mutually exclusive. Please choose one or the other.${echo_normal:-}"
exit 1
fi
BASH_IT="$(cd "${BASH_SOURCE%/*}" && pwd)"
CONFIG_FILE=".bashrc"
# overriding CONFIG_FILE:
CONFIG_FILE="${BASH_IT_CONFIG_FILE:-"${CONFIG_FILE}"}"
# create subdir if CONFIG_FILE has subdirectory components
if [[ "${CONFIG_FILE%/*}" != "${CONFIG_FILE}" ]]; then
mkdir -p "${HOME}/${CONFIG_FILE%/*}"
fi
BACKUP_FILE="${CONFIG_FILE?}.bak"
echo "Installing bash-it"
if [[ -z "${no_modify_config}" ]]; then
_bash-it-install-modify-config
fi
# Disable auto-reload in case its enabled
export BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE=''
# Load dependencies for enabling components
# shellcheck source-path=SCRIPTPATH/vendor/github.com/erichs/composure
source "${BASH_IT}/vendor/github.com/erichs/composure/composure.sh"
cite _about _param _example _group _author _version
# shellcheck source-path=SCRIPTDIR/lib
source "${BASH_IT}/lib/log.bash"
# shellcheck source-path=SCRIPTDIR/lib
source "${BASH_IT?}/lib/utilities.bash"
# shellcheck source-path=SCRIPTDIR/lib
source "${BASH_IT?}/lib/helpers.bash"
# shellcheck source-path=SCRIPTDIR/lib
source "${BASH_IT?}/lib/colors.bash"
if [[ -n ${interactive:-} && -z "${silent:-}" ]]; then
for type in "aliases" "plugins" "completion"; do
echo -e "${echo_green:-}Enabling ${type}${echo_normal:-}"
_bash-it-install-enable "$type"
done
else
echo ""
_bash-it-profile-load "default"
fi
if command -v code-server > /dev/null 2>&1; then
echo ""
echo "Installing VS Code extensions..."
if [ -f "${BASH_IT}/extensions.txt" ]; then
while IFS= read -r extension || [ -n "$extension" ]; do
# Skip empty lines and comments
[[ -z "$extension" || "$extension" =~ ^# ]] && continue
echo "Installing $extension..."
code-server --install-extension "$extension" 2>/dev/null || echo "Note: Could not install $extension (may already be installed or unavailable)"
done < "${BASH_IT}/extensions.txt"
echo "VS Code extensions installation complete!"
fi
fi
# Ensure .bashrc sourcing is set up on macOS/BSD/Solaris
_bash-it-install-ensure-bashrc-sourcing
echo ""
echo -e "${echo_green:-}Installation finished successfully! Enjoy bash-it!${echo_normal:-}"
echo -e "${echo_green:-}To start using it, open a new tab or 'source ~/${CONFIG_FILE?}'.${echo_normal:-}"
echo ""
echo "To show the available aliases/completions/plugins, type one of the following:"
echo " bash-it show aliases"
echo " bash-it show completions"
echo " bash-it show plugins"
echo ""
echo "To avoid issues and to keep your shell lean, please enable only features you really want to use."
echo "Enabling everything can lead to issues."