Created
March 28, 2025 16:56
-
-
Save bradleyfrank/dc96e853e6ac804e82a068d38fb7dbb1 to your computer and use it in GitHub Desktop.
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 characters
| #!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment