Created
January 8, 2018 18:25
-
-
Save wieseljonas/8ce68187e4ba5622699e2880cc5779f1 to your computer and use it in GitHub Desktop.
OSX mac setup script
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
#!/bin/sh | |
# Install Script for OSX | |
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh` | |
echo "Installing xcode" | |
xcode-select --install | |
echo "Installing brew..." | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew doctor | |
echo "Installing brew cask..." | |
brew tap caskroom/cask | |
#Communication Apps | |
brew cask install skype | |
brew cask install franz | |
#Desktop tools | |
brew cask install spectacle | |
brew cask install 1password | |
#Web Tools | |
brew cask install google-chrome | |
#File Storage | |
brew cask install google-drive | |
#Utils | |
brew cask install the-unarchiver | |
brew cask install webtorrent | |
brew cask install vlc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment