Skip to content

Instantly share code, notes, and snippets.

@paul-hph
Forked from CliffordAnderson/brew-install-script.sh
Last active December 7, 2021 20:20
Show Gist options
  • Save paul-hph/30485f676a8329a526c310bfe1f97cd4 to your computer and use it in GitHub Desktop.
Save paul-hph/30485f676a8329a526c310bfe1f97cd4 to your computer and use it in GitHub Desktop.
Brew install script for OSX
#!/bin/sh
# Homebrew Script for OSX
# To execute: save and `chmod +x ./brew-install-script.sh` then `./brew-install-script.sh`
echo "Installing brew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
echo "Installing brew cask..."
brew tap caskroom/cask
brew install mas
#Dev Tools
#brew cask install atom
#brew cask install sublime-text
brew cask install visual-studio-code
brew cask install sequel-ace
brew cask install table-tool
brew cask install hyper
brew cask install fig
brew cask install transmit
brew cask install codekit
#Communication Apps
brew cask install rocket-chat
#Web Tools
brew cask install google-chrome
brew cask install firefox
#Organisation
brew cask install 1password
#Helper
brew cask install easyfind
brew cask install nordvpn
brew cask install alfred
brew cask install rectangle
#Productivity
brew cask install licecap
brew cask install screaming-frog-seo-spider
mas install 441258766
#wireguard
mas install 1451685025
#Design
brew cask install noun-project
brew cask install sketch
brew install sketchpacks
#CUSTOM
brew cask install superhuman
brew cask install Integrity
#File Storage
brew install git
brew cask install github-desktop
#Programming Languages
#brew install node
brew install php
brew services start php
brew install composer
composer global require laravel/valet
export PATH="$PATH:$HOME/.composer/vendor/bin"
valet install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment