Joe 9d7520a28c feat(brew): install Signal via `brew` 1 年之前
..
.gitignore 3e04e46c49 feat(brew): add `Brewfile` to config 1 年之前
Brewfile 9d7520a28c feat(brew): install Signal via `brew` 1 年之前
README.md 3e04e46c49 feat(brew): add `Brewfile` to config 1 年之前

README.md

Homebrew

  • The Missing Package Manager for macOS

Installing brew

Homebrew (brew) can be installed with the following command:

/bin/zsh -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Brewfile

The Brewfile describes the Homebrew Bundle of packages currently installed with brew. It can be managed with brew bundle. It should not be managed automatically, as currently-running applications should not be updated.

The Brewfile can be generated with the following command:

cd $XDG_CONFIG_HOME/brew/ && brew bundle dump --force --describe

The content of the Brewfile can be installed with the following command:

cd $XDG_CONFIG_HOME/brew/ && brew bundle install

Clean up installed packages with the following command:

cd $XDG_CONFIG_HOME/brew/ && brew bundle cleanup --force