brand: change tagline to be more layman friendly

This commit is contained in:
atagen 2026-05-24 19:43:51 +10:00
parent 6efd841520
commit 0458ae0818
6 changed files with 48 additions and 26 deletions

View file

@ -1,6 +1,6 @@
# headroom
AGC + compressor + true-peak limiter daemon for PipeWire, in Rust.
Automatic loudness and per-app volume control for PipeWire, in Rust.
Headroom puts a per-application audio safety net between noisy sources
(browsers, voice chat, random video) and your speakers, while leaving
@ -46,15 +46,15 @@ This repo is a flake; the daemon plus its systemd user unit and the
canonical profiles are exposed as a package.
```sh
nix run github:amaanq/headroom -- daemon # one-shot run
nix profile install github:amaanq/headroom # add to $PATH
nix run github:atagen/headroom -- daemon # one-shot run
nix profile install github:atagen/headroom # add to $PATH
```
For **Home Manager**, add the flake as an input and enable the module:
```nix
{
inputs.headroom.url = "github:amaanq/headroom";
inputs.headroom.url = "github:atagen/headroom";
# In your Home Manager configuration:
imports = [ inputs.headroom.homeModules.default ];
@ -72,7 +72,7 @@ For **NixOS** (system-wide binary install + systemd-user discovery):
```nix
{
inputs.headroom.url = "github:amaanq/headroom";
inputs.headroom.url = "github:atagen/headroom";
# In your NixOS configuration:
imports = [ inputs.headroom.nixosModules.default ];