-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrew_stuff.sh
More file actions
executable file
·53 lines (43 loc) · 886 Bytes
/
brew_stuff.sh
File metadata and controls
executable file
·53 lines (43 loc) · 886 Bytes
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
#!/bin/sh
PACKAGES="\
coreutils \
git \
bash-completion \
reattach-to-user-namespace \
brew-cask \
wget \
scons \
tmux \
vim \
graphviz \
dos2unix \
ag \
astyle \
fpp \
"
CASKS="\
virtualbox \
vagrant \
vagrant-manager \
iterm2 \
xquartz \
wireshark \
java \
flash \
hammerspoon \
"
if ( ! which brew ); then
echo Installing Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)";
fi
brew tap caskroom/cask
brew tap caskroom/versions
brew update
brew upgrade --all
brew install $PACKAGES
brew cask install $CASKS
brew cask install qlcolorcode qlstephen qlmarkdown quicklook-json qlprettypatch quicklook-csv betterzipql webpquicklook suspicious-package && qlmanage -r
brew cleanup
brew prune
# install Alcatraz
curl -fsSL https://raw.githubusercontent.com/supermarin/Alcatraz/master/Scripts/install.sh | sh