Last active
June 20, 2016 03:42
-
-
Save gaplo917/72508784c9e676a6dd646b122f6ce072 to your computer and use it in GitHub Desktop.
Mac-install-script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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