Skip to content

Instantly share code, notes, and snippets.

@cliss
Last active April 12, 2024 01:38
Show Gist options
  • Star 70 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save cliss/74782128b9a35366ecac44a7c4b45752 to your computer and use it in GitHub Desktop.
Save cliss/74782128b9a35366ecac44a7c4b45752 to your computer and use it in GitHub Desktop.
Casey Liss's Brewfile, as of 31 October 2021
cask_args appdir: "/Applications"
tap "homebrew/cask-fonts"
brew "mas"
#### LAPTOPS ####
#cask "tripmode"
#### LAPTOPS ####
mas "Boop", id: 1518425043
mas "Day One", id: 1055511498
mas "Due", id: 524373870
mas "Fantastical", id: 435003921
mas "Final Cut Pro", id: 424389933
mas "GeoTag", id: 1465180184
mas "Numbers", id: 409203825
mas "Pages", id: 409201541
mas "Parcel", id: 639968404
mas "Pixelmator Pro", id: 1289583905
mas "Slack", id: 803453959
mas "Soulver 2", id: 413965349
mas "StopTheMadness", id: 1376402589
mas "Text Sniper", id: 1528890965
mas "Tweetbot", id: 1384080005
mas "Wireguard", id: 1451685025
mas "Xcode", id: 497799835
mas "xScope", id: 889428659
mas "Yoink", id: 457622435
cask "1Password"
cask "aerial"
cask "alfred"
cask "audio-hijack"
cask "anylist"
cask "banktivity"
cask "daisydisk"
cask "discord"
cask "droplr"
cask "fission"
cask "google-chrome"
cask "handbrake"
cask "iina"
cask "imageoptim"
cask "istat-menus"
cask "kaleidoscope"
cask "keepingyouawake"
cask "licecap"
cask "makemkv"
cask "monodraw"
cask "proxyman"
cask "rocket"
cask "sf-symbols"
cask "skitch"
cask "spotify"
cask "subler"
cask "swiftbar"
cask "textmate"
cask "textual"
cask "tower"
cask "visual-studio-code"
cask "zoom"
cask "font-fira-code"
brew "bat"
brew "cloc"
brew "emacs"
brew "ffmpeg"
brew "mkvtoolnix"
brew "mp4v2"
brew "yt-dlp"
brew "wget"
brew "exiftool"
brew "fish"
brew "node"
@tjschuck
Copy link

@cliss I know you're a real ffmpeg head like me, so you might like this bit from my Brewfile to build/install ffmpeg with all available options, so that I'm never surprisingly missing something later down the line as I want to do something new and crazy with ffmpeg:

# at the top, though it can be anywhere...
ALL_FFMPEG_OPTIONS = `brew options ffmpeg | grep -vE '\s' | grep -- '--with-'`.gsub("--", "").split("\n")

# then, where I install ffmpeg:
brew "ffmpeg", args: ALL_FFMPEG_OPTIONS

@bjbech
Copy link

bjbech commented Mar 6, 2020

Will writing cask_args appdir: "/Applications" save casks in ~/Applications or USER/Applications?

@cliss
Copy link
Author

cliss commented Mar 6, 2020

I would guess /Applications but I'm not sure.

Easy enough for you to try though; make a Brewfile of only one [new] entry and see what happens. :)

@tjluoma
Copy link

tjluoma commented Aug 2, 2020

Unfortunately I think brew dropped the ability to specify your own options.

brew options ffmpeg returns absolutely nothing ☹️

@tjschuck
Copy link

tjschuck commented Aug 3, 2020

@EricFromCanada
Copy link

The ffmpeg formula from https://github.com/homebrew-ffmpeg/homebrew-ffmpeg offers options.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment