Skip to content

Instantly share code, notes, and snippets.

@IsMuz
Forked from CliffordAnderson/brew-install-script.sh
Last active March 30, 2020 13:22
Show Gist options
  • Save IsMuz/59769bdf671190976eacc69a9915e73c to your computer and use it in GitHub Desktop.
Save IsMuz/59769bdf671190976eacc69a9915e73c to your computer and use it in GitHub Desktop.
Brew install script for OSX
#!/bin/sh
# Homebrew Script for OSX
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh`
echo "Installing brew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "Installing brew cask..."
brew tap caskroom/cask
#Programming Languages
brew cask install java
brew install python
brew tap homebrew/science
#Dev Tools
brew install wget
brew install git
brew cask install dbeaver
#Communication Apps
brew cask install whatsapp
brew cask install slack
brew cask install telegram-desktop
#Web Tools
brew cask install google-chrome
brew cask install opera
#File Storage
#mail.ru
#others
brew cask install folx
brew cask install quip
brew cask install enpass
brew cask install Insomniax
batchmod
battle-net
app-cleaner
#end
brew tap caskroom/versions
brew cask install java8
brew upgrade
brew doctor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment