-
-
Save seesleestak/14d568ad8711e2e171ce2d06db9e8a7c to your computer and use it in GitHub Desktop.
Install Homebrew, Cask, and necessary apps for Mac OSX
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 | |
echo Install Homebrew, Postgres, wget and cask | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew install exa | |
brew install wget | |
brew install orientdb | |
brew install mongo | |
brew install go | |
brew install node | |
brew install watchman | |
brew install tree | |
brew install postgresql | |
brew install awscli | |
# nvm | |
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash | |
# Searching | |
brew install ack | |
brew install fzf | |
brew install the_silver_searcher | |
brew install ripgrep | |
# Terminal functionality | |
brew install git-extras | |
## | |
brew tap phinze/cask | |
brew install brew-cask | |
# Core Functionality | |
echo Install Core Apps | |
brew cask install --appdir="/Applications" alfred | |
brew cask install --appdir="/Applications" dropbox | |
# Development | |
echo Install Dev Apps | |
brew cask install --appdir="/Applications" github | |
brew cask install --appdir="/Applications" iterm2 | |
brew cask install --appdir="/Applications" hyper | |
# Google Stuff | |
brew cask install --appdir="/Applications" google-chrome | |
brew cask install --appdir="/Applications" chromecast | |
# Nice to have | |
echo Install Some additional Apps | |
brew cask install --appdir="/Applications" firefox | |
brew cask install --appdir="/Applications" spotify | |
# Link Cask Apps to Alfred | |
brew cask alfred link | |
# cleanup | |
brew cleanup --force | |
rm -f -r /Library/Caches/Homebrew/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment