Last active
February 24, 2020 16:39
-
-
Save eirichmond/c37ba428a4b85cf1754f344075be8fbb to your computer and use it in GitHub Desktop.
Critical Recover Application Install brew script
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/bash | |
# Update any existing home-brew recipes | |
brew update | |
# Upgrade any already installed formulae | |
brew upgrade | |
# Install my brew packages | |
brew install wget | |
# Install cask | |
brew install cask | |
# Install Mac Apps installer | |
brew install mas | |
# Install desired cask packages | |
brew cask install firefox | |
brew cask install sequel-pro | |
brew cask install visual-studio-code | |
brew cask install postman | |
brew cask install iterm2 | |
brew cask install slack | |
brew cask install screaming-frog-seo-spider | |
# Remove brew fluff | |
brew cleanup | |
# Remove cask fluff | |
brew cask cleanup | |
# Install Mac Apps | |
# Install Tweetdeck | |
mas install 485812721 | |
# Insall Trello | |
mas install 1278508951 | |
# Insall Password Pad Lite | |
mas install 410755452 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment