Skip to content

Instantly share code, notes, and snippets.

@Lc0rE
Forked from CliffordAnderson/brew-install-script.sh
Last active August 28, 2023 09:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lc0rE/9c318755bf9b7cbf747a15bf98f64596 to your computer and use it in GitHub Desktop.
Save Lc0rE/9c318755bf9b7cbf747a15bf98f64596 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 install caskroom/cask/brew-cask
#Programming Languages
brew cask install java
brew install node
#brew install elm
#brew install haskell-stack
#brew install idris
#brew tap homebrew/science
#brew cask install r
#Dev Tools
brew install git
brew cask install github-desktop
brew cask install atom
brew cask install visual-studio-code
brew cask install webstorm
brew cask install datagrip
#brew install basex
#brew install neo4j
#brew cask install rstudio
#brew install httpie
#brew cask install hyperterm
#brew cask install kitematic
#brew cask install oxygen-xml-editor
#Communication Apps
#brew install keybase
brew cask install slack
brew cask install skype
brew cask install mattermost
#brew cask install microsoft-lync
#Web Tools
brew cask install google-chrome
brew cask install firefox
#File Storage
brew cask install google-drive
brew cask install dropbox
brew cask install onedrive
#brew cask install amazon-cloud-drive
#Writing Apps
#brew cask install basictex
#brew cask install tex-live-utility
#brew install pandoc
#brew install pandoc-citeproc
#brew cask install zotero
#Entertainment
#brew cask install amazon-music
#brew cask install minecraft
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment