Last active
July 1, 2017 18:50
-
-
Save anmolnagpal/8442fe09e87ceb1424d48d31ddd3b138 to your computer and use it in GitHub Desktop.
MacOS Tool's
This file contains hidden or 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 all AppStore Apps at first! | |
# no solution to automate AppStore installs | |
read -p "Press any key to continue... " -n1 -s | |
echo '\n' | |
echo Install and Set San Francisco as System Font | |
ruby -e "$(curl -fsSL https://raw.github.com/wellsriley/YosemiteSanFranciscoFont/master/install)" | |
echo Install Homebrew, Postgres, wget and cask | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/liuchengxu/space-vim/master/install.sh)" | |
brew tap homebrew/science | |
brew install wget | |
brew install go | |
brew install node | |
npm install -g gitjk | |
sudo npm install -g pm2 | |
brew tap phinze/cask | |
brew install brew-cask | |
#brew cask search | |
#brew cask uninstall app | |
# Core Functionality | |
echo Install Core Apps | |
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" java | |
## get from App Store | |
brew cask install --appdir="/Applications" wunderlist | |
brew cask install --appdir="/Applications" clamxav | |
# Development | |
echo Install Dev Apps | |
brew cask install --appdir="/Applications" sublime-text | |
brew cask install --appdir="/Applications" intellij-idea | |
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" sourcetree | |
brew cask install --appdir="/Applications" charles | |
brew cask install --appdir="/Applications" easyfind | |
# Docker | |
brew cask install --appdir="/Applications" virtualbox | |
brew install docker | |
brew install docker-machine | |
brew install docker-compose | |
# Google Slavery | |
echo Install Google Apps | |
brew cask install --appdir="/Applications" google-chrome | |
brew cask install --appdir="/Applications" google-drive | |
brew cask install --appdir="/Applications" chromecast | |
# Nice to have | |
echo Install Some additional Apps | |
brew cask install --appdir="/Applications" firefox | |
brew install youtube-dl | |
brew install bumpversion | |
brew install glances | |
brew install sysdig | |
brew install yarn | |
brew cask install teamviewer | |
brew install packer | |
brew install bumpversion | |
brew install tree | |
brew install AWSCLI | |
brew isntall terraform | |
brew install ansible | |
brew cask install cheatsheet | |
brew cask install spectacle | |
brew cask install qlcolorcode | |
brew cask install slack | |
brew cask install forklift | |
brew cask install postman | |
brew cask install --appdir="/Applications" skype | |
brew cask install --appdir="/Applications" jdownloader | |
brew cask install --appdir="/Applications" lastfm | |
brew cask install --appdir="/Applications" all2mp3 | |
brew cask install --appdir="/Applications" spotify | |
brew cask install --appdir="/Applications" spotify-notifications | |
# 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