Files
shell-scripting-templates/setupScripts/casks.sh
2015-01-10 09:49:23 -05:00

76 lines
1.0 KiB
Bash
Executable File

#!/usr/bin/env bash
if [ -f "../lib/utils.sh" ]; then
source "../lib/utils.sh"
else
echo "You must have utils.sh to run. Exiting."
exit
fi
# Set Variables
LISTINSTALLED="brew cask list"
INSTALLCOMMAND="brew cask install --appdir=/Applications"
RECIPES=(
alfred
arq
authy-bluetooth
bartender
betterzipql
capo
carbon-copy-cloner
cheatsheet
codekit
controlplane
default-folder-x
dropbox
evernote
fantastical
firefox
flux
fluid
github
google-chrome
hazel
istat-menus
iterm2
imagealpha
imageoptim
java
joinme
kaleidoscope
launchbar
mamp
marked
mailplane
moom
nvalt
omnifocus
1password
plex-home-theater
qlcolorcode
qlmarkdown
qlprettypatch
qlstephen
quicklook-csv
quicklook-json
skitch
spillo
suspicious-package
textexpander
tower
vlc
webp-quicklook
xld
)
# Run Functions
hasHomebrew
hasCasks
brewMaintenance
doInstall
# Cleanup Homebrew
brew cask cleanup