Files
mac_os/bin/install_homebrew_formulas
Andreas Düren 4eda00bfd9 Add ghostty terminal emulator and opencode AI coding agent
- Add ghostty (GPU-accelerated terminal emulator) to casks
- Add opencode (AI coding agent for terminal) to formulas

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-10 16:21:06 -06:00

41 lines
864 B
Bash
Executable File

#! /usr/bin/env bash
# Installs Homebrew formulas (CLI tools).
set -o nounset
set -o errexit
set -o pipefail
IFS=$'\n\t'
# Ensure Homebrew is installed
install_homebrew
# Shell & Terminal
brew install atuin
brew install bash
brew install bash-completion
brew install pinentry-mac
brew tap artginzburg/tap
brew install artginzburg/tap/sudo-touchid
brew tap domt4/autoupdate
# AI
brew install gemini-cli
brew install opencode
# Media
brew install ffmpeg
# Utilities
brew install mas
brew install mole
brew install rename
brew install ykman
# Configure automatic updates
printf "\n🔧 Configuring automatic Homebrew updates...\n"
mkdir -p ~/Library/LaunchAgents
brew autoupdate start 43200 --upgrade --cleanup --immediate --sudo 2>/dev/null || printf "⚠️ Failed to configure brew autoupdate\n"
printf "\n✅ Homebrew Formulas installation complete!\n"