Skip to content

Instantly share code, notes, and snippets.

@gaplo917
Last active June 20, 2016 03:42
Show Gist options
  • Save gaplo917/72508784c9e676a6dd646b122f6ce072 to your computer and use it in GitHub Desktop.
Save gaplo917/72508784c9e676a6dd646b122f6ce072 to your computer and use it in GitHub Desktop.
Mac-install-script
#!/bin/sh
# install shit on mac osx
# author: mcor
# date: 2015-12-17
# install brew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# install cask
brew tap caskroom/cask
brew install brew-cask
# install chrome
brew cask install google-chrome firefox iterm2
# install java
brew cask install java
# essential
brew install git wget htop vim autojump gradle md5sha1sum bash-completion openssl zsh
# work env
brew install mongodb mysql zookeeper node python scala sbt protobuf rabbitmq redis
# finally install oh-my-zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# Change screen capture location
mkdir ~/Pictures/ScreenCap
defaults write com.apple.screencapture location ~/Pictures/ScreenCap/
killall SystemUIServer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment