Skip to content

Instantly share code, notes, and snippets.

@fmsouza
Forked from t-io/osx_install.sh
Last active June 27, 2018 17:18
Show Gist options
  • Save fmsouza/aa52996816a1332a895e to your computer and use it in GitHub Desktop.
Save fmsouza/aa52996816a1332a895e to your computer and use it in GitHub Desktop.
Install most of my Apps with homebrew & cask
#!/bin/sh
read -p "Press any key to continue... " -n1 -s
echo '\n'
echo "Installing Xcode cli tools..."
xcode-select --install
# echo Install and Set San Francisco as System Font
# ruby -e "$(curl -fsSL https://raw.github.com/wellsriley/YosemiteSanFranciscoFont/master/install)"
echo "Install Homebrew, cask and some other packages..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install wget
brew install ant
brew install git
brew tap caskroom/cask
# Core Functionality
#brew cask install --appdir="/Applications" alfred
#brew cask install --appdir="/Applications" dropbox
#brew cask install --appdir="/Applications" little-snitch
#brew cask install --appdir="~/Applications" transmit
#brew cask install --appdir="~/Applications" iterm2
brew cask install --appdir="~/Applications" vlc
brew cask install --appdir="~/Applications" java
brew cask install --appdir="/Applications" tunnelblick
brew cask install --appdir="/Applications" teamviewer
brew cask install --appdir="/Applications" onyx
brew cask install --appdir="/Applications" mounty
brew cask install --appdir="/Applications" the-unarchiver
brew cask install --appdir="/Applications" etcher
## get from App Store
#brew cask install --appdir="/Applications" evernote
#brew cask install --appdir="/Applications" wunderlist
#brew cask install --appdir="/Applications" clamxav
# Development
#brew cask install --appdir="/Applications" github
#brew cask install --appdir="/Applications" heroku-toolbelt
#brew cask install --appdir="/Applications" sublime-text
#brew cask install --appdir="/Applications" webstorm
#brew cask install --appdir="/Applications" pycharm-pro
#brew cask install --appdir="/Applications" light-table
#brew cask install --appdir="/Applications" macvim
#brew cask install --appdir="/Applications" virtualbox
#brew cask install --appdir="/Applications" vagrant
#brew cask install --appdir="/Applications" sourcetree
#brew cask install --appdir="/Applications" charles
#brew cask install --appdir="/Applications" easyfind
brew cask install --appdir="/Applications" visual-studio-code
brew cask install --appdir="/Applications" android-studio
brew cask install --appdir="/Applications" robomongo
brew cask install --appdir="/Applications" docker
# Google Slavery
echo Install Google Apps | Chrome not included cause of 1Password Plugin
brew cask install --appdir="/Applications" google-chrome
brew cask install --appdir="/Applications" google-drive
#brew cask install --appdir="/Applications" google-music-manager
#brew cask install --appdir="/Applications" google-earth
# Nice to have
#echo Install Some additional Apps
#brew cask install --appdir="/Applications" firefox
brew cask install --appdir="/Applications" skype
#brew cask install --appdir="/Applications" lastfm
brew cask install --appdir="/Applications" spotify
brew cask install --appdir="/Applications" whatsapp
brew cask install --appdir="/Applications" telegram
brew cask install --appdir="/Applications" slack
brew cask install --appdir="/Applications" zoomus
brew cask install --appdir="/Applications" vuze
brew cask install --appdir="/Applications" tigervnc-viewer
# cleanup
brew cleanup --force
rm -f -r /Library/Caches/Homebrew/*
echo "installing Node.js environment..."
wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash
source $HOME/.bash_profile
nvm install stable
npm i -g ionic cordova ios-sim ios-deploy eslint jshint http-server typescript
#echo "Security: https://objective-see.com/products.html"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment