mirror of
https://github.com/natelandau/shell-scripting-templates.git
synced 2025-11-09 05:33:48 -05:00
76 lines
1.0 KiB
Bash
Executable File
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
|