Skip to content

Instantly share code, notes, and snippets.

@iqiancheng
Created January 3, 2025 08:42
Show Gist options
  • Save iqiancheng/ce6fb4558541e12ed45a803dd2d9480c to your computer and use it in GitHub Desktop.
Save iqiancheng/ce6fb4558541e12ed45a803dd2d9480c to your computer and use it in GitHub Desktop.
Homebrew批量安装脚本
#!/bin/bash
# Update Homebrew
echo "Updating Homebrew..."
brew update
# Add necessary taps
echo "Adding required taps..."
brew tap homebrew/cask-versions
brew tap homebrew/cask-fonts
brew tap ygsgdbd/tap # for vastwords and v2bar
brew tap bookstairs/tap
brew tap tabbyml/tabby
brew tap quackduck/tap
# Install applications
echo "Starting application installation..."
# Browsers
echo "Installing browsers..."
brew install --cask arc
brew install --cask google-chrome
# Development Tools
echo "Installing development tools..."
brew install --cask visual-studio-code
brew install --cask sublime-text
brew install --cask warp
brew install --cask pycharm
brew install --cask postman
brew install --cask tableplus
brew install --cask rapidapi
brew install --cask copilot-for-xcode
brew install --cask cursor
brew install --cask meld
brew install --cask orbstack
brew install --cask nvidia-nsight-systems
brew install --cask reqable
# Productivity & Utilities
echo "Installing productivity tools..."
brew install --cask raycast
brew install --cask keepingyouawake
brew install --cask keka
brew install --cask maccy
brew install --cask tripmode
brew install --cask typora
brew install --cask obsidian
brew install --cask pronotes
brew install --cask pixpin
brew install --cask hapigo
brew install --cask vastwords
brew install --cask opencat
brew install --cask daisydisk
brew install --cask amorphousdiskmark
brew install --cask dropover
brew install --cask houdahspot
brew install --cask downie
brew install --cask windsurf
# Communication & Collaboration
echo "Installing communication tools..."
brew install --cask discord
brew install --cask slack
brew install --cask telegram
brew install --cask wechat
brew install --cask tencent-meeting
brew install --cask messenger
brew install --cask claude
brew install --cask zoom
# Network Tools
echo "Installing network tools..."
brew install --cask clash-verge
brew install --cask thunder
brew install --cask v2bar
# AI & Development Environment
echo "Installing AI and development tools..."
brew install --cask utm
brew install ollama
# Verify installation
echo "Verifying installation..."
brew doctor
echo "Installation process completed!"
# Non-Homebrew Applications Reference:
# 1. Microsoft Office Suite (Better to install from official website or App Store):
# - Microsoft Excel
# - Microsoft Word
# - Microsoft PowerPoint
# - Microsoft Outlook
#
# 2. Official Website Downloads:
# - JetBrains Actviate Toolbox
# - Z-Library (https://z-library.sk/)
# - JetBrains Toolbox (https://www.jetbrains.com/toolbox-app/)
# - Additional NVIDIA Tools (https://developer.nvidia.com/tools-overview)
#
# 3. App Store Only:
# - Xnip
# - Paste
# - Listy
# - Weibo International
# - WeRead
# - Xiaohongshu
# - Whisper Mate
# - Windows App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment