Skip to content

Instantly share code, notes, and snippets.

@trovster
Last active January 8, 2020 12:27
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save trovster/7c5f3ef82ad7f1539e7866f5d1958485 to your computer and use it in GitHub Desktop.
Save trovster/7c5f3ef82ad7f1539e7866f5d1958485 to your computer and use it in GitHub Desktop.
Install software via CLI
#!/bin/sh
# chmod a+x software.sh
# Install Brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew tap homebrew/core
brew tap homebrew/cask
brew tap homebrew/cask-drivers
# Config
export HOMEBREW_CASK_OPTS="--appdir=/Applications"
# Packages
brew install ruby
brew install mas
brew install wget
# Applications / $ brew search xyz
#brew cask install 1password # MAS
brew cask install aerial # screensaver
brew cask install alfred
brew cask install appzapper
brew cask install cakebrew
brew cask install codekit
brew cask install docker
brew cask install dropbox
brew cask install firefox
brew cask install github
brew cask install google-chrome
brew cask install imagealpha
brew cask install imageoptim
brew cask install istat-menus
brew cask install iterm2
brew cask install lastfm
brew cask install postman
brew cask install skype
#brew cask install slack # MAS
brew cask install spotify
brew cask install sequel-pro
brew cask install steam
brew cask install textmate
brew cask install the-unarchiver
brew cask install transmit # v5
brew cask install vagrant
brew cask install virtualbox
brew cask install visual-studio-code
brew cask install vlc
brew cask alfred link
brew cask cleanup
# App Store / $ mas search xyz
mas signin firstname.lastname@example.com
mas install 1333542190 # 1Password 7 (7.0.7)
mas install 803453959 # Slack (3.2.0)
mas install 403388562 # Transmit (4.4.13)
mas install 557168941 # Tweetbot (2.5.7)
mas install 409789998 # Twitter (4.3.2)
mas install 1000397973 # Wallcat (1.3.0)
mas install 497799835 # Xcode (9.4.1)
# Dock
# * Finder
# * Firefox
# * VSCode
# * Tweetbot
# * Billings
# * Spotify
# * Messages
# Information
# https://computers.tutsplus.com/tutorials/perfect-configurations-with-homebrew-and-cask--cms-20768
# https://computers.tutsplus.com/tutorials/getting-spiffy-with-powerline--cms-20740
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment