-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrew.sh
executable file
·53 lines (45 loc) · 1.22 KB
/
brew.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env bash
# Checks that Homebrew is installed and install if not
which brew 1>&/dev/null
if [ ! "$?" -eq 0 ] ; then
echo "Homebrew not installed. Attempting to install Homebrew"
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
if [ ! "$?" -eq 0 ] ; then
echo "Something went wrong. Exiting..." && exit 1
fi
fi
### Install Brew Packages
brew install python
brew install tree
brew install git
brew install composer
brew install node
### Install MacOS Applications
brew cask install google-chrome
brew cask install spotify
brew cask install skype
brew cask install vlc
# Misc
brew cask install appcleaner
brew cask install flux
brew cask install day-o
brew cask install daisydisk
brew install gh
brew install heroku/brew/heroku
# Youtube downloader and dependancies
brew install ffmpeg
brew install youtube-dl
brew install imagemagick
# Code Editors + ftp manager
brew cask install visual-studio-code
brew cask install cyberduck
# Code editor extras
brew install unrar
brew install pandoc
brew cask install basictex
brew cask install chromedriver
### Install Source Code Pro Font
brew tap homebrew/cask-fonts
brew cask install font-source-code-pro
# Remove brew cruft
brew cleanup