Skip to content

Instantly share code, notes, and snippets.

@georgkreimer
Forked from t-io/osx_install.sh
Last active August 29, 2015 14:05
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 georgkreimer/91fd537b432b96979459 to your computer and use it in GitHub Desktop.
Save georgkreimer/91fd537b432b96979459 to your computer and use it in GitHub Desktop.
#!/bin/sh
echo Install all AppStore Apps at first!
# no solution to automate AppStore installs
read -p "Press any key to continue... " -n1 -s
echo '\n'
# install wallpaper cli
gem install desktop
echo Install Homebrew, Postgres, wget and cask
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew tap homebrew/science
brew install wget
brew install node
brew install ant
brew install jenv
#brew install ffmpeg
#brew install eigen
#brew install opencv
brew tap phinze/cask
brew install brew-cask
#brew cask search
#brew cask uninstall app
# Core Functionality
echo Install Core Apps
brew cask install --appdir="~/Applications" java
brew cask install --appdir="/Applications" evernote
brew cask install --appdir="/Applications" skype
brew cask install --appdir="/Applications" synology-cloud-station
brew cask install --appdir="/Applications" the-unarchiver
brew cask install --appdir="/Applications" spotify
brew cask install --appdir="/Applications" flashlight
brew cask install --appdir="/Applications" mjolnir
# Development
echo Install Dev Apps
brew cask install --appdir="/Applications" github
brew cask install --appdir="/Applications" sourcetree
brew cask install --appdir="/Applications" sublime-text
brew cask install --appdir="/Applications" macvim
brew cask install --appdir="/Applications" textmate
brew cask install --appdir="/Applications" android-studio
brew cask install --appdir="/Applications" clipmenu
brew cask install --appdir="/Applications" 1password
brew cask install --appdir="/Applications" dash
brew cask install --appdir="/Applications" virtualbox
brew cask install --appdir="/Applications" vagrant
brew cask install --appdir="/Applications" heroku-toolbelt
brew cask install --appdir="/Applications" postgres
# Mjolnir
echo Install Mjolnir Config Dependencies
brew install lua luarocks
luarocks install mjolnir.fnutils
luarocks install mjolnir.geometry
luarocks install mjolnir.screen
luarocks install mjolnir.hotkey
# cleanup
brew cleanup --force
rm -f -r /Library/Caches/Homebrew/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment