Last active
October 9, 2015 22:54
-
-
Save nielk/4cc34120da4c7265ba09 to your computer and use it in GitHub Desktop.
setup.sh
This file contains hidden or 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
echo 'Installing terminal stuffs' | |
echo 'show hidden files' | |
defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder | |
if [ -x /usr/local/bin/brew ]; then | |
echo 'Brew' | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi | |
if [ -x /usr/local/bin ]; then | |
echo 'Installing oh-my-zsh' | |
curl -L http://install.ohmyz.sh | sh | |
if [ -x /usr/local/bin ]; then | |
echo 'Installing Brew cask' | |
brew install caskroom/cask/brew-cask | |
fi | |
echo 'Brew Cask app' | |
brew cask install google-chrome | |
brew cask install firefox | |
brew cask install sublime-text | |
brew cask install appcleaner | |
brew cask install gisto | |
brew cask install mou | |
brew cask install chromium | |
brew cask install hipchat | |
brew cask install sequel-pro | |
brew cask install soulver |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment