Last active
June 24, 2024 11:25
-
-
Save brunofbrito/13c29c9b1f7a833066a98522d4b826f7 to your computer and use it in GitHub Desktop.
Install my macOS apps with homebrew, cask and mas-cli
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/zsh | |
echo Time to install all apps at once! | |
read -p "Press any key to continue... " -n1 -s | |
echo '\n' | |
echo Installing Homebrew... | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
echo Installing Oh My Zsh... | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
echo Installing taps... | |
brew tap homebrew/cask-fonts | |
brew tap caskroom/versions | |
echo Installing CLI tools... | |
brew install asdf bottom fd ffmpeg fzf httpd imagemagick mas ncdu node php rsync scrcpy trash wget yarn youtube-dl | |
echo Installing Browsers... | |
brew install choosy caskroom/versions/firefoxdeveloperedition google-chrome | |
echo Installing Web Dev apps... | |
brew install balsamiq-wireframes cyberduck figma insomnia iterm2 local-by-flywheel maccy marked mjml prepros screaming-frog-seo-spider sip sketch sublime-text tower virtualbox visual-studio-code | |
echo Installing Media apps... | |
brew install ableton-live-suite airflow beatport-pro blackhole handbrake iina imageoptim losslesscut mixed-in-key native-access spotify screenflow xact | |
echo Installing Productivity apps... | |
brew install 1password backblaze bettertouchtool bitwarden calendar-366 daisydisk dozer dropbox flotato google-drive google-drive-file-stream grammarly karabiner-elements manta onyx path-finder raycast rescuetime shottr skype stats toggl transmission twist zoom | |
echo Installing Apps from the App Store... | |
mas install 475260933 # HardwareGrowler | |
mas install 1320666476 # Wipr | |
mas install 957810159 # Raindrop.io for Safari | |
mas install 1081413713 # GIF Brewery 3 | |
mas install 918858936 # Airmail | |
mas install 407963104 # Pixelmator | |
mas install 824171161 # Affinity Designer | |
mas install 467939042 # Growl | |
mas install 1147396723 # WhatsApp | |
mas install 1449412482 # Reeder | |
mas install 937984704 # Amphetamine | |
mas install 425424353 # The Unarchiver | |
mas install 1274495053 # Microsoft To Do | |
mas install 509641724 # Trickster | |
mas install 568494494 # Pocket | |
mas install 1450640351 # Lightweight PDF | |
mas install 485812721 # TweetDeck | |
mas install 419330170 # Moom | |
mas install 522324709 # Multimon | |
mas install 1295203466 # Microsoft Remote Desktop | |
mas install 823766827 # OneDrive | |
mas install 1507246666 # Presentify | |
mas install 409201541 # Pages | |
mas install 1482454543 # Twitter | |
mas install 405399194 # Kindle | |
mas install 1289197285 # MindNode | |
mas install 408981434 # iMovie | |
mas install 409203825 # Numbers | |
mas install 409183694 # Keynote | |
echo All Apps installed, grabbing Fonts... | |
brew install font-victor-mono font-camingocode font-ibm-plex | |
echo Everything is ready. Enjoy your new Mac! | |
# Apps missing: PS5 Remote Play (latest), Remote for Mac, TextExpander 4.3.6, Website Auditor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment