-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrew.sh
More file actions
77 lines (63 loc) · 1.34 KB
/
brew.sh
File metadata and controls
77 lines (63 loc) · 1.34 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
echo "Installing Homebrew stuff";
# Make sure we’re using the latest Homebrew.
echo "Updating Homebrew..."
brew update
# Installing bundler...
echo "Installing bundler..."
sudo gem install bundler
echo "Installing ruby gems..."
bundle install
# Upgrade any already-installed formulae.
brew upgrade
# Install `wget`
echo "Installing wget.."
brew install wget
# Install GnuPG to enable PGP-signing commits.
brew install gnupg
brew install ssh-copy-id
# Install font tools.
echo "Installing font tools..."
brew tap bramstein/webfonttools
brew install sfnt2woff
brew install sfnt2woff-zopfli
brew install woff2
echo "Installing Git..."
brew install git
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
# software
echo "Installing Homebrew cask"
brew install caskroom/cask/brew-cask
# Install apps to /Applications
# Default is: /Users/$user/Applications
echo "installing apps with Cask..."
# Apps
apps=(
chrome
firefox
iterm2
transmit
sequel-pro
vlc
skype
dropbox
spotify
slack
phpstorm
github
jumpcut
divvy
1password
gotomeeting
sonos
transmission
zoomus
tuple
screen
postman
vagrant
)
brew cask install --appdir="/Applications" ${apps[@]}
# Remove outdated versions from the cellar.
echo "Cleaning up..."
brew cask cleanup
brew cleanup