Last active
October 17, 2021 17:32
-
-
Save teknekale/4628eeb1f05cadb04f6c6b67ad34055d to your computer and use it in GitHub Desktop.
This file contains 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 | |
# Homebrew Script for OSX | |
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh` | |
echo "Install Oh My Zsh" | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.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 node | |
brew install yarn | |
brew install angular-cli | |
brew install groovy | |
#Dev Tools | |
brew install git | |
brew install gradle | |
brew cask install visual-studio-code | |
brew cask install sequel-pro | |
brew cask install intellij-idea-ce | |
brew cask install sublime-text | |
brew cask install charles | |
brew cask install hyper | |
#Communication Apps | |
brew cask install slack | |
brew cask install skype | |
brew cask install whatsapp | |
#Web Tools | |
brew cask install google-chrome | |
brew cask install firefox | |
#Others | |
brew cask install spotify | |
brew cask install 1password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment