-
-
Save cassiocardoso/649cd015d7c2eff7bdfe02bdcd50dcdd to your computer and use it in GitHub Desktop.
Install most of my Apps with homebrew & cask
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 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)" | |
brew tap homebrew/science | |
brew install wget | |
brew install git | |
brew install node | |
brew install ruby | |
brew install python | |
brew install thefuck | |
brew install fasd | |
brew install mysql | |
# To have launchd start mysql at login : `ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents` | |
# To load mysql immediately : `launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist | |
# Finally add the mysql directory to your PATH environment variable in .bash_profile : | |
# export MYSQL_PATH=/usr/local/Cellar/mysql/5.6.27 | |
# export PATH=$PATH:$MYSQL_PATH/bin | |
# Reload shell and type `mysql -v to confirm | |
# Configure MySQL: `mysqladmin -u root password 'yourpassword' | |
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" java | |
brew cask install --appdir="~/Applications" vlc | |
## get from App Store | |
brew cask install --appdir="/Applications" evernote | |
# Development | |
echo Install Dev Apps | |
brew cask install --appdir="/Applications" github-desktop | |
brew cask install --appdir="/Applications" atom | |
brew cask install --appdir="/Applications" phpstorm | |
# Google Slavery | |
echo Install Google Apps | Chrome not included cause of 1Password Plugin | |
# brew cask install --appdir="/Applications" google-chrome | |
brew cask install --appdir="/Applications" google-drive | |
# Nice to have | |
echo Install Some additional Apps | |
brew cask install --appdir="/Applications" skype | |
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/* | |
echo "Security: https://objective-see.com/products.html" |
Little correction in the GitHub desktop cask code.
Right now it's Just GitHub.
The code will be
brew cask install --appdir="/Applications" github
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @cassiocardoso, I came across your GitHub repository while setting up a similar script to install my apps.
I wanted to share with you a way to install Mac app from Mac App Store automatically. You can use mas cli.
I also have a question : What is the purpose of the "link cask apps to Alfred" line 63