-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbrew.sh
executable file
·280 lines (235 loc) · 6.83 KB
/
brew.sh
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
#!/usr/bin/env bash
debug=${1:-false}
# Load help lib if not already loaded.
if [ -z ${libloaded+x} ]; then
source ./lib.sh
fi;
# Set install flag to false
brewinstall=false
bot "Install Homebrew and all required apps."
ask_for_confirmation "\nReady to install apps? (get a coffee, this takes a while)";
# Flag install to go if user approves
if answer_is_yes; then
ok
brewinstall=true
else
cancelled "Homebrew and applications not installed."
fi;
if $brewinstall; then
# Prevent sleep.
caffeinate &
action "Installing Homebrew"
# Check if brew installed, install if not.
if ! hash brew 2>/dev/null; then
# note: if your /usr/local is locked down (like at Google), you can do this to place everything in ~/.homebrew
# mkdir "$HOME/.homebrew" && curl -L https://github.com/mxcl/homebrew/tarball/master | tar xz --strip 1 -C $HOME/.homebrew
# then add this to your path: export PATH=$HOME/.homebrew/bin:$HOME/.homebrew/sbin:$PATH
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
print_result $? 'Install Homebrew.'
else
success "Homebrew already installed."
fi;
running "brew update + brew upgrade"
# Make sure we’re using the latest Homebrew.
brew update
# Upgrade any already-installed formulae.
brew upgrade
# CORE
running "Installing apps"
# Install GNU core utilities (those that come with macOS are outdated).
# Don’t forget to add `$(brew --prefix coreutils)/libexec/gnubin` to `$PATH`.
brew install coreutils
# Install some other useful utilities like `sponge`.
brew install moreutils
# Install GNU `find`, `locate`, `updatedb`, and `xargs`, `g`-prefixed.
brew install findutils
# Install GNU `sed`, overwriting the built-in `sed`.
brew install gnu-sed # add to path
# Install Bash 4.
# Note: don’t forget to add `/usr/local/bin/bash` to `/etc/shells` before
# running `chsh`.
brew install bash
brew install bash-completion2
# Switch to using brew-installed bash as default shell
if ! fgrep -q '/usr/local/bin/bash' /etc/shells; then
echo '/usr/local/bin/bash' | sudo tee -a /etc/shells;
chsh -s /usr/local/bin/bash;
fi;
# zsh
brew install zsh
brew install zsh-completion
# Install `wget` with IRI support.
brew install wget
# Install GnuPG to enable PGP-signing commits.
brew install gnupg
brew install pinentry-mac
# Install more recent versions of some native macOS tools.
brew install perl
brew install vim # add to path
brew install grep
brew install nano
brew install openssh
brew install screen
# Key tools.
brew install git
brew install tmux
brew install z
# OTHER USEFUL UTILS
brew install ack
brew install advancecomp
brew install brew-cask-completion
brew install cloc
brew install cmake
brew install diff-so-fancy
brew install fzf
brew install gibo && gibo -l
brew install git-delta
brew install git-extras
brew install git-lfs
brew install git-quick-stats
brew install graphviz
brew install grc
brew install httpie
brew install hub
brew install icdiff
brew install jq
brew install mas
brew install mtr
brew install ngrep
brew install nmap
brew install p7zip
brew install pidof
brew install pigz
brew install pv
brew install readline
brew install reattach-to-user-namespace
brew install rename
brew install roundup
brew install spark
brew install speedtest-cli
brew install ssh-copy-id
brew install terminal-notifier
brew install the_silver_searcher
brew install trash-cli
brew install tree
brew install vbindiff
brew install wifi-password
brew install zopfli
# BACKUP
brew install mackup
# DEVELOPMENT
brew install adr-tools
brew install asdf
# brew install n
brew install yarn
# brew install go
# brew install homebrew/php/php56 --with-gmp
brew install pyenv
brew install pyenv-virtualenv
brew install rbenv
brew install ruby-build
brew install rbenv-gemset
# DATABASES
brew install postgresql
brew install mysql@5.7
brew install redis
brew tap mongodb/brew
brew install mongodb-community
# DEVOPS
brew install awscli
brew install nginx
brew install puma/puma/puma-dev
# docker
# brew install docker
# brew install docker-compose
# brew install docker-machine
# brew install xhyve
# brew install docker-machine-driver-xhyve
# brew install boot2docker
# WEBFONT TOOLS
running "Installing webfont tools"
brew tap bramstein/webfonttools
brew install sfnt2woff
brew install sfnt2woff-zopfli
brew install woff2
# FONTS
running "Installing fonts"
brew tap homebrew/cask-fonts
brew install svn # needed for google fonts
brew cask install font-domine
brew cask install font-fira-code
brew cask install font-fira-sans
brew cask install font-inconsolata
brew cask install font-lato
brew cask install font-open-sans
brew cask install font-roboto
brew cask install font-source-code-pro
brew cask install font-source-sans-pro
brew cask install font-ubuntu
running "Installing cask apps"
# APPLICATIONS
brew tap homebrew/cask
brew tap homebrew/cask-versions
# Security
brew cask install dashlane
brew cask install keybase
brew cask install gpg-suite
brew cask install tunnelblick
# General
brew cask install caffeine
brew cask install diskwave
brew cask install dropbox
brew cask install firefox
brew cask install g-desktop-suite
brew cask install google-chrome
brew cask install grammarly
brew cask install iterm2
brew cask install rectangle
brew cask install slack
# brew cask install spectacle
brew cask install spotify
brew cask install vlc
brew cask install zoomus
# Design
brew cask install abstract
# brew cask install sketch
# brew cask install zeplin
# Development
brew cask install dash
brew cask install google-chrome-canary
brew cask install graphiql
brew cask install imagealpha
brew cask install imageoptim
brew cask install ngrok
brew cask install sequel-pro
brew cask install visual-studio-code
# DevOps
brew cask install aws-vault
# VM
# brew cask install virtualbox
# brew cask install vagrant
# Quicklook
brew cask install qlcolorcode
brew cask install qlstephen
brew cask install qlmarkdown
brew cask install quicklook-json
brew cask install qlprettypatch
brew cask install quicklook-csv
# brew cask install betterzipql
# brew cask install qlimagesize
brew cask install webpquicklook
# brew cask install suspicious-package
brew cask install quicklookase
brew cask install qlvideo
# Install Mac App Store Applications.
# requires: brew install mas
# mas install 1254981365 # Contrast
# mas install 1234952668 # FlagTimes
# mas install 1225570693 # Ulysses
# TODO: install pixelsnap
running "brew cleanup"
# Remove outdated versions from the cellar.
brew cleanup
# turn off prevent sleep.
killall caffeinate
fi;