Skip to content

Instantly share code, notes, and snippets.

@nippe
Created August 18, 2015 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nippe/f49eeaa0f5fb095ec9c3 to your computer and use it in GitHub Desktop.
Save nippe/f49eeaa0f5fb095ec9c3 to your computer and use it in GitHub Desktop.
Caskroom install script
# Apps
apps=(
alfred
dropbox
google-chrome
slack
firefox
hazel
spotify
vagrant
iterm2
#sublime-text
atom
vlc
skype
istat-menus
bartender
fluid
lastpass
#calibre
omnifocus
mindnode-pro
minecraft
evernote
skitch
sonos
sourcetree
kindle
send-to-kindle
robomongo
p4merge
ynab
caskroom/homebrew-versions/java6
webstorm
toggldesktop
moom
mou
witch
caffeine
imageoptim
google-hangouts
disk-inventory-x
filezilla
parallels-desktop
monodraw
heroku-toolbelt
pocketcasts
virtualbox
kitematic
charles
)
set +e
echo "Installing cask bews..."
brew cask install --appdir="/Applications" ${apps[@]}
# Check for Homebrew
# Install it if ints not present
if test ! $(which brew); then
echo "Installing homebrew ..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
binaries=(
autojump
elasticsearch
redis
git
jq
httpie
lastpass-cli
icdiff
mongodb
wget
tree
macvim
fish
boot2docker
docker
)
echo "installing binaries..."
brew install ${binaries[@]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment