Skip to content

Instantly share code, notes, and snippets.

@wieseljonas
Created January 8, 2018 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wieseljonas/8ce68187e4ba5622699e2880cc5779f1 to your computer and use it in GitHub Desktop.
Save wieseljonas/8ce68187e4ba5622699e2880cc5779f1 to your computer and use it in GitHub Desktop.
OSX mac setup script
#!/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