Skip to content

Instantly share code, notes, and snippets.

@maxmilian
Last active December 15, 2021 03:48
Show Gist options
  • Save maxmilian/5e4979f2c0baacdec17d1564607e7fed to your computer and use it in GitHub Desktop.
Save maxmilian/5e4979f2c0baacdec17d1564607e7fed to your computer and use it in GitHub Desktop.
Mac常用軟體

現在有雲端磁碟、雲端備份,要整個重灌Mac也是越來越簡單

雲端備份

目前使用 Arq 6 軟體
可以類似 Time Machine 使用
平常就使用備份,
基本上工作進度、或者還原檔案就會變得很簡單

Homebrew

重灌完系統後,
第一個安裝的是 Homebrew
有了 Homebrew 後,接著要安裝其他軟體就變得很簡單

Shell

我自己習慣使用的是 Oh My Zsh

其他Homebrew套件

# Social
brew install --cask wechat

# Web Browser
brew install --cask brave-browser
brew install --cask welly

# Editor
brew install --cask atom
brew install --cask microsoft-office
brew install --cask notion

# Version Control
brew install --cask github
brew install git

# Database
brew install --cask robo-3t

# utils
brew install --cask iterm2
brew install --cask keka
brew install --cask authy
brew install --cask arq
brew install --cask dropbox
brew install --cask zoom
brew install --cask anydesk


# Media
brew install --cask spotify

Mac App Store Apps 套件管理

有些套件不能直接使用 homebrew 安裝,但是能透過 Mac App Store 安裝,
可以使用 brew mas 這個套件管理

brew install mas
//Example 安裝 LINE 539883307

mas install 539883307

Homebrew Bundle

使用以下 Brewfile 並於該目錄使用 brew bundle 安裝

使用 brew bundle dump 匯出目前的 brewfile

brew bundle dump
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-versions"
tap "homebrew/core"
tap "homebrew/services"
# Mac App Store command-line interface
brew "mas"
brew "nginx", restart_service: true
brew "wget"
cask "1password"
cask "anydesk"
cask "arq"
cask "atom"
cask "authy"
cask "docker"
cask "dropbox"
cask "github"
cask "google-chrome"
cask "iterm2"
cask "keka"
cask "ngrok"
case "notion"
cask "robo-3t"
cask "skype"
cask "spotify"
cask "virtualbox"
cask "wechat"
cask "welly"
cask "zoom"
mas "LINE", id: 539883307
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment