Skip to content

Instantly share code, notes, and snippets.

@gaza3g
Last active August 29, 2015 14:27
Show Gist options
  • Save gaza3g/a7383155a830c0a115e3 to your computer and use it in GitHub Desktop.
Save gaza3g/a7383155a830c0a115e3 to your computer and use it in GitHub Desktop.
#!/bin/sh
#install xcode from appstore
# bash <(curl -s https://gist.githubusercontent.com/gaza3g/a7383155a830c0a115e3/raw/ae25bf22381e217b6f7a0df72a6283a937f55636/media_install.sh)
echo Install XCode cmd tools
xcode-select --install
echo Install Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install wget
brew install ffmpeg
brew install python
brew tap phinze/cask
brew install brew-cask
brew tap caskroom/versions
#brew cask search
#brew cask uninstall app
# Core Functionality
echo Install Core Apps
brew cask install --appdir="~/Applications" vlc
brew cask install --appdir="~/Applications" iterm2
brew cask install --appdir="~/Applications" the-unarchiver
brew cask install --appdir="/Applications" sublime-text3
mkdir -p ~/bin && ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" ~/bin/subl
# Nice to have
echo Install Some additional Apps
brew cask install --appdir="/Applications" firefox
brew cask install --appdir="/Applications" google-chrome
brew cask install --appdir="/Applications" dropbox
brew cask install --appdir="/Applications" transmission
brew cask install --appdir="/Applications" spotify
brew cask install --appdir="/Applications" plex-media-server
brew cask install --appdir="/Applications" seil
brew cask install --appdir="/Applications" karabiner
brew cask install --appdir="/Applications" shiftit
brew cask install --appdir="/Applications" shades
brew cask install --appdir="/Applications" insomniax
#git config --global user.name "username"
#git config --global user.email "email@.com"
#git config --global github.user gituhbuser
#git config --global color.ui true
#disable accented menu
defaults write -g ApplePressAndHoldEnabled -bool false
# cleanup
brew cleanup --force
rm -f -r /Library/Caches/Homebrew/*
brew doctor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment