Created
March 28, 2025 16:56
-
-
Save bradleyfrank/dc96e853e6ac804e82a068d38fb7dbb1 to your computer and use it in GitHub Desktop.
Revisions
-
bradleyfrank created this gist
Mar 28, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,32 @@ #!/usr/bin/env bash HOMEBREW_INSTALL_SCRIPT="https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh" NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL "$HOMEBREW_INSTALL_SCRIPT")" export PATH="/opt/homebrew/bin:/usr/local/bin:${PATH}" cat << EOF > Brewfile cask "1password" cask "backblaze" cask "calibre" cask "fantastical" cask "iina" cask "keepassxc" cask "mullvadvpn" cask "netnewswire" cask "nextcloud" cask "notesnook" cask "numi" cask "pearcleaner" cask "plexamp" cask "signal" cask "sony-ps-remote-play" cask "spotify" cask "tor-browser" cask "vivaldi" cask "vlc" cask "waterfox" cask "zoom" EOF brew bundle install