-
Notifications
You must be signed in to change notification settings - Fork 173
/
slay
executable file
ยท228 lines (193 loc) ยท 8.35 KB
/
slay
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
#!/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 Formation failed \e[31m๏ฑ\033[0m\n" >&2; exit $ret' EXIT
set -e
###############################################################################
# TWIRL: Check for required functions file
###############################################################################
if [ -e twirl ]; then
cd "$(dirname "${BASH_SOURCE[0]}")" \
&& . "twirl"
else
printf "\n โ ๏ธ ./twirl not found ๐๐พ First, you need to twirl on your haters\n"
exit 1
fi
###############################################################################
# CHECK: Bash version
###############################################################################
check_bash_version
###############################################################################
# Get in Formation! http://patorjk.com/software/taag/ ( font: Script )
###############################################################################
printf "
_
| |
| | __ ,_ _ _ _ __, _|_ ๐ __ _ _
|/ / \_/ | / |/ |/ | / | | | / \_/ |/ |
|__/\__/ |_/ | | |_/\_/|_/|_/|_/\__/ | |
|\ ---------------------------------------------
|/ Cause you slay [for Bash 3.2 - 3.9]
โญโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ Okay developers now let's get in ${bold}formation${normal}. โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ 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
# -----------------------------------------------------------------------------
# Bash-it
# -----------------------------------------------------------------------------
if [ -d "$HOME/.bash_it" ]; then
print_success_muted "Bash-it already installed. Skipping."
else
step "Installing Bash-itโฆ"
git clone --depth=1 https://github.com/Bash-it/bash-it.git ~/.bash_it
~/.bash_it/install.sh --silent --no-modify-config
print_success "Bash-it installed!"
fi
# -----------------------------------------------------------------------------
# NVM
# -----------------------------------------------------------------------------
if [ -x nvm ]; then
step "Installing NVMโฆ"
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
print_success "NVM installed!"
step "Installing latest Nodeโฆ"
nvm install node
nvm use node
nvm run node --version
nodev=$(node -v)
print_success "Using Node $nodev!"
else
print_success_muted "NVM/Node already installed. Skipping."
fi
# -----------------------------------------------------------------------------
# Homebrew
# -----------------------------------------------------------------------------
if ! [ -x "$(command -v brew)" ]; then
step "Installing Homebrewโฆ"
curl -fsS 'https://raw.githubusercontent.com/Homebrew/install/master/install' | ruby
export PATH="/usr/local/bin:$PATH"
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/swag/brews ]; then
chapter "Installing Homebrew formulaeโฆ"
for brew in $(<$cwd/swag/brews); do
install_brews $brew
done
fi
###############################################################################
# UPDATE: Homebrew
###############################################################################
chapter "Updating Homebrew formulaeโฆ"
brew update
###############################################################################
# INSTALL: casks
###############################################################################
if [ -e $cwd/swag/casks ]; then
chapter "Installing apps via Homebrewโฆ"
for cask in $(<$cwd/swag/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/swag/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/swag/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/swag/npm ]; then
chapter "Installing npm packagesโฆ"
for pkg in $(<$cwd/swag/npm); do
KEY="${pkg%%::*}"
VALUE="${pkg##*::}"
install_npm_packages $KEY $VALUE
done
fi
###############################################################################
# OPTIONAL: Customizations
###############################################################################
chapter "Adding hot sauceโฆ"
if [ -f "$HOME/.hot-sauce" ]; then
if ask "Do you want to add hot sauce?" Y; then
. "$HOME/.hot-sauce"; printf "\n You got hot sauce in your bag. ๐ฅ ${bold}Swag.${normal}\n";
else
print_success_muted "Hot sauce declined. Skipped.";
fi
else
print_warning "No ~/.hot-sauce found. Skipping."
fi
###############################################################################
# ๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐๐
###############################################################################
e_lemon_ated