Skip to content

Instantly share code, notes, and snippets.

@supercoffee
Last active July 25, 2018 07:04
Show Gist options
  • Save supercoffee/e3faee88a57936606ee9fdf412dec22b to your computer and use it in GitHub Desktop.
Save supercoffee/e3faee88a57936606ee9fdf412dec22b to your computer and use it in GitHub Desktop.
install software on mac
#!/usr/bin/env bash
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# browsers
brew cask install opera google-chrome firefox lastpass google-hangouts
# office and files
brew cask install libreoffice evernote gimp google-drive
# general tools
brew cask install iterm2 virtualbox wireshark \
java cyberduck android-file-transfer karabiner \
proxpn transmission disk-inventory-x flux steam
# developer tools
brew cask install paw mysqlworkbench sqlitebrowser vagrant \
phpstorm atom sourcetree pycharm android-studio \
brew install python ansible node nmap gradle \
homebrew/php/composer
brew install -fs homebrew/php/php71-mcrypt
# change default screenshot location
screenshotdir="$HOME/Pictures/screenshots"
mkdir -p $screenshotdir && defaults write com.apple.screencapture location $screenshotdir && killall SystemUIServer
# run Lp installer
open /usr/local/Caskroom/lastpass/latest/LastPass\ Installer.app/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment