Created
April 21, 2021 13:28
-
-
Save gabmontes/2da800c43156c9b87ebeb3e292d4cc01 to your computer and use it in GitHub Desktop.
Install many apps in a new Mac using a single 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/sh | |
# Install Homebrew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" | |
# Install all | |
brew cask install \ | |
brave-browser \ | |
docker \ | |
gpg-suite-no-mail \ | |
ledger-live \ | |
libreoffice \ | |
slack \ | |
telegram | |
transmission \ | |
unshaky \ | |
visual-studio-code \ | |
vlc \ | |
brew install \ | |
awscli \ | |
awsebcli \ | |
google-chrome | |
htop \ | |
jq \ | |
nvm \ | |
postman \ | |
robo-3t \ | |
unrar \ | |
# Install Node.js | |
nvm install 14 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment