lsau is a small macOS command-line tool that lists installed Audio Units and groups them by publisher.
brew tap grimdork/tools
brew install grimdork/tools/lsauThis project uses a simple Makefile rather than Swift Package Manager.
makeThe default build is an optimized, stripped release binary written to:
./build/lsauBuild a separate debug binary with symbols:
make debugThat binary is written to:
./build/lsau-debugShow help:
./build/lsau -hList all matching publishers and units:
./build/lsauFilter by publisher:
./build/lsau -p appleFilter by unit name:
./build/lsau -n delayCombine filters:
./build/lsau -p apple -n delayResults are grouped by publisher and sorted case-insensitively. If no Audio Units match the filters, lsau prints an error and exits non-zero.
make cleanMIT