Skip to content

Instantly share code, notes, and snippets.

@vilanovi
Last active May 27, 2022 15:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vilanovi/e75ec3433c83d9b3d155c9760fb20b1d to your computer and use it in GitHub Desktop.
Save vilanovi/e75ec3433c83d9b3d155c9760fb20b1d to your computer and use it in GitHub Desktop.
System Bootsrap installation for apps
#!/bin/bash
## GEMS
# Coding
sudo gem install cocoapods
sudo gem install fastlane
## Homebrew
# Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> ~/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
# Media
brew install --cask spotify
brew install --cask vlc
brew install ffmpeg
# Tools
brew install --cask iterm2
brew install --cask arq
brew install --cask setapp
brew install --cask numi
brew install --cask bartender
brew install --cask grammarly-desktop
brew install --cask monitorcontrol
brew install --cask istat-menus
brew install --cask google-drive
brew install --cask google-chrome
brew install --cask airserver
brew install --cask nordvpn
brew install --cask geekbench
# Password Manager
brew install --cask bitwarden
brew install --cask 1password
brew install --cask 1password-cli
# Communication
brew install --cask whatsapp
brew install --cask telegram
brew install --cask slack
brew install --cask discord
brew install --cask skype
# Coding
brew install --cask cmake
brew install --cask jetbrains-toolbox
brew install --cask visual-studio-code
brew install --cask charles
brew install --cask sourcetree
brew install --cask postman
brew install --cask xcodes
# Design
brew install --cask abstract
brew install --cask sketch
brew install --cask skitch
# Gaming
brew install --cask steam
## Cusotmizations
# Iterm2 animation speed
defaults write com.googlecode.iterm2 HotkeyTermAnimationDuration -float 0.05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment