# breweri ### Simple TUI frontend for [Homebrew](https://brew.sh). Breweri is a fork of [parui](https://github.com/Vonr/parui). Requires curl and jq. ```sh brew install curl jq ``` ### Usage ``` Usage: breweri [OPTION]... QUERY Search for QUERY in Homebrew repositories, Example: breweri rustup Options: -h Print this help and exit ``` ### Keybinds breweri adopts vim-like keybinds. | Key | Mode | Action | |------------------------|--------|---------------------------| | \ | Insert | Search for query | | \ | Insert | Removes previous word | | \ | Both | Exits breweri | | \ | Both | Switch Modes | | i, / | Select | Enter Insert Mode | | \ | Select | Install selected packages | | \, \ | Select | Moves info one row down | | \, \ | Select | Moves info one row up | | h, \, \ | Select | Moves one page back | | j, \ | Select | Moves one row down | | k, \ | Select | Moves one row up | | l, \, \ | Select | Moves one page forwards | | g, \ | Select | Go to start | | G, \ | Select | Go to end | | \ | Select | Select/deselect package | | c | Select | Clear selections | | \ | Select | Remove selected packages | | q | Select | Exits breweri |