Skip to content

Instantly share code, notes, and snippets.

@msomu
Forked from brunofbrito/apps_install.sh
Last active June 18, 2021 02:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msomu/f3612bcab7591eb93ddab28f821f88d3 to your computer and use it in GitHub Desktop.
Save msomu/f3612bcab7591eb93ddab28f821f88d3 to your computer and use it in GitHub Desktop.
Install my macOS apps with homebrew, cask and mas-cli
#!/bin/sh
echo Install all AppStore Apps at first!
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 Brew favorites...
brew tap homebrew/cask-fonts
brew install wget
brew install ffmpeg
brew install imagemagick
brew install node
brew install yarn
brew install mas
brew install ncdu
brew install fd
brew install trash
echo Installing Oh My Zsh...
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
echo Installing Browsers...
brew cask install google-chrome
echo Installing Web Dev apps...
brew cask install sublime-text
brew cask install dash
brew cask install db-browser-for-sqlite
brew cask install figma
brew cask install insomnia
brew cask install iterm2
echo Installing Productivity apps...
brew cask install bitwarden
brew cask install dozer
brew cask install path-finder
brew cask install rescuetime
brew cask install tripmode
brew cask install transmission
brew cask install daisydisk
brew cask install flotato
brew cask install manta
brew cask install stats
brew cask install toggl
echo Installing Apps from the App Store...
mas install 1081413713 # GIF Brewery 3
mas install 1460666667 # Contrast Safe
mas install 937984704 # Amphetamine
mas install 1351639930 # Gifski
mas install 425424353 # The Unarchiver
mas install 568494494 # Pocket
mas install 1450640351 # Lightweight PDF
mas install 485812721 # TweetDeck
echo All Apps installed, grabbing Fonts...
brew cask install font-victor-mono
brew cask install font-camingocode
brew cask install font-ibm-plex
echo Everything is ready. Enjoy your new Mac!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment