Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Query homebrew for package list on macOS #140

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pfetch
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ get_pkgs() {
has dpkg && dpkg-query -f '.\n' -W

# Directories containing packages.
has brew && printf '%s\n' /usr/local/Cellar/*
has brew && printf '%s\n' "$(brew --cellar)/"*

# 'port' prints a single line of output to 'stdout'
# when no packages are installed and exits with
Expand Down