Quick Start
Install Be Right Back, initialise the global config, and send your first notification in a few minutes.
Install the Tool
Before you begin, make sure you have cargo installed. If you don't already
have it, follow the official installation guide here.
Then install brb:
cargo install brb-cliConfirm the CLI is available:
brb --versionCreate Your Config
Initialise the global config file:
brb initThis command only creates the file if it does not already exist, so it is safe to run multiple times. To see where your config file is stored:
brb config pathFor the quickest possible setup, start with a simple desktop-only config:
version: 1
default_channels:
- desktop
channels:
desktop:
type: desktopValidate And Test Your Setup
After editing your config, validate it:
brb channels validateTo test a specific channel without running a real command:
brb channels test desktopThis sends a fake success notification so you can confirm everything is working.
Run Your First Command
brb cargo test # `cargo test` can be whatever command you want.cargo test is just an example - you can replace it with any command.
If you do not provide any --channel flags, Be Right Back uses the channel IDs
listed in default_channels.
When the command finishes, Be Right Back sends a completion event to each selected channel and exits with the same status code as the wrapped command.
That's it! 🎉
Now you are ready to use brb. Head to Configuration to
learn how to customise channels, defaults, and behaviour.