-
Notifications
You must be signed in to change notification settings - Fork 0
/
goBandit
executable file
·250 lines (201 loc) · 8.26 KB
/
goBandit
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
#!/usr/bin/env bash
###############################################################################
# ERROR: Let the user know if the script fails
###############################################################################
trap 'ret=$?; test $ret -ne 0 && printf "\n \e[31m\033[0m Bandit has failed you \e[31m\033[0m\n" >&2; exit $ret' EXIT
set -e
###############################################################################
# BLUEPRINTS: Check for required functions file
###############################################################################
if [ -e blueprints ]; then
cd "$(dirname "${BASH_SOURCE[0]}")" \
&& . "blueprints"
else
printf "\n ⚠️ ./blueprints not found. \n"
exit 1
fi
###############################################################################
# CHECK: Bash version
###############################################################################
check_bash_version
###############################################################################
# Go Bandit Go! https://www.ascii-art-generator.org/ ( font: Slant )
###############################################################################
printf "
###### # # # ###### ### #######
# # # # ## # # # # #
# # # # # # # # # # #
###### # # # # # # # # #
# # ####### # # # # # # #
# # # # # ## # # # #
###### # # # # ###### ### #
╭───────────────────────────────────────────────────╮
│ Safe to run multiple times on the same machine. │
│ It ${green}installs${reset}, ${blue}upgrades${reset}, or ${yellow}skips${reset} packages based │
│ on what is already installed on the machine. │
╰───────────────────────────────────────────────────╯
${dim}$(get_os) $(get_os_version) ${normal} // ${dim}$BASH ${normal} // ${dim}$BASH_VERSION${reset}
"
###############################################################################
# CHECK: Internet
###############################################################################
chapter "Checking internet connection…"
check_internet_connection
###############################################################################
# PROMPT: Password
###############################################################################
chapter "Caching password…"
ask_for_sudo
###############################################################################
# PROMPT: SSH Key
###############################################################################
chapter 'Checking for SSH key…'
ssh_key_setup
###############################################################################
# INSTALL: Dependencies
###############################################################################
chapter "Installing Dependencies…"
# -----------------------------------------------------------------------------
# XCode
# -----------------------------------------------------------------------------
if type xcode-select >&- && xpath=$( xcode-select --print-path ) &&
test -d "${xpath}" && test -x "${xpath}" ; then
print_success_muted "Xcode already installed. Skipping."
else
step "Installing Xcode…"
xcode-select --install
print_success "Xcode installed!"
fi
if [ ! -d "$HOME/.bin/" ]; then
mkdir "$HOME/.bin"
fi
if [ ! -f "$HOME/.zshrc" ]; then
touch "$HOME/.zshrc"
fi
HOMEBREW_PREFIX="/usr/local"
if [ -d "$HOMEBREW_PREFIX" ]; then
if ! [ -r "$HOMEBREW_PREFIX" ]; then
sudo chown -R "$LOGNAME:admin" /usr/local
fi
else
sudo mkdir "$HOMEBREW_PREFIX"
sudo chflags norestricted "$HOMEBREW_PREFIX"
sudo chown -R "$LOGNAME:admin" "$HOMEBREW_PREFIX"
fi
# -----------------------------------------------------------------------------
# Homebrew
# -----------------------------------------------------------------------------
if ! [ -x "$(command -v brew)" ]; then
step "Installing Homebrew…"
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> $HOME/.zshrc
eval $(/opt/homebrew/bin/brew shellenv)
print_success "Homebrew installed!"
else
print_success_muted "Homebrew already installed. Skipping."
fi
if brew list | grep -Fq brew-cask; then
step "Uninstalling old Homebrew-Cask…"
brew uninstall --force brew-cask
print_success "Homebrew-Cask uninstalled!"
fi
###############################################################################
# INSTALL: brews
###############################################################################
if [ -e $cwd/materials/brews ]; then
chapter "Installing Homebrew formulae…"
for brew in $(<$cwd/materials/brews); do
install_brews $brew
done
fi
###############################################################################
# UPDATE: Homebrew
###############################################################################
chapter "Updating Homebrew formulae…"
brew update
###############################################################################
# INSTALL: casks
###############################################################################
if [ -e $cwd/materials/casks ]; then
chapter "Installing apps via Homebrew…"
for cask in $(<$cwd/materials/casks); do
install_application_via_brew $cask
done
fi
###############################################################################
# INSTALL: Mac App Store Apps
###############################################################################
chapter "Installing apps from App Store…"
if [ -x mas ]; then
print_warning "Please install mas-cli first: brew mas. Skipping."
else
if [ -e $cwd/materials/apps ]; then
if mas_setup; then
# Workaround for associative array in Bash 3
# https://stackoverflow.com/questions/6047648/bash-4-associative-arrays-error-declare-a-invalid-option
for app in $(<$cwd/materials/apps); do
KEY="${app%%::*}"
VALUE="${app##*::}"
install_application_via_app_store $KEY $VALUE
done
else
print_warning "Please signin to App Store first. Skipping."
fi
fi
fi
###############################################################################
# CLEAN: Homebrew files
###############################################################################
chapter "Cleaning up Homebrew files…"
brew cleanup 2> /dev/null
###############################################################################
# INSTALL: npm packages
###############################################################################
if [ -e $cwd/materials/npm ]; then
chapter "Installing npm packages…"
for pkg in $(<$cwd/materials/npm); do
KEY="${pkg%%::*}"
VALUE="${pkg##*::}"
install_npm_packages $KEY $VALUE
done
fi
###############################################################################
# Install: Oh My ZSH
###############################################################################
chapter "Initial ZSH Setup…"
if [ -e $cwd/materials/dotfiles ]; then
if ask "Do you want to install Oh-My-ZSH! and Powerlevel10K theme for the first time?" Y; then
install_ohmyzsh;
echo "\n";
print_success "Installation complete.";
else
print_success_muted "Installation was declined. Skipped.";
fi
else
print_warning "Something went wrong. Skipping."
fi
###############################################################################
# LINK: dotfiles
###############################################################################
chapter "Linking dotfiles…"
if [ -e $cwd/materials/dotfiles ]; then
if ask "Last Step. Do you want to link the dotfiles?" Y; then
# shellcheck disable=SC2016
append_to_zshrc 'export PATH="$HOME/.bin:$PATH"'
symlink_dotfiles;
source ~/.zshrc
echo "\n";
# FZF completions
$(brew --prefix)/opt/fzf/install
sudo ln -s ~/.vimrc ~/.config/nvim/init.vim
print_success "Dotfiles complete.";
else
print_success_muted "Linking was declined. Skipped.";
fi
else
print_warning "Something went wrong. Skipping."
fi
###############################################################################
# END
###############################################################################
e_all_finished