| 1 | # bullets |
| 2 | |
| 3 | Minimal terminal RSS reader. Pass one or more feed URLs, browse entries, open in browser. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | ```sh |
| 8 | bullets <feed-url> [feed-url ...] |
| 9 | ``` |
| 10 | |
| 11 | Or set feeds via environment variable (comma-separated): |
| 12 | |
| 13 | ```sh |
| 14 | export BULLETS_FEEDS=https://example.com/feed.xml,stevedylan.dev |
| 15 | ``` |
| 16 | |
| 17 | Feed discovery included — bare domains (e.g. `stevedylan.dev`) are probed for RSS/Atom feeds automatically. |
| 18 | |
| 19 | ## Keybindings |
| 20 | |
| 21 | | Key | Action | |
| 22 | |-----|--------| |
| 23 | | `j` / `↓` | Next entry | |
| 24 | | `k` / `↑` | Prev entry | |
| 25 | | `Enter` | Open in browser | |
| 26 | | `q` | Quit | |
| 27 | |
| 28 | ## Install |
| 29 | |
| 30 | ```sh |
| 31 | cargo install --path . |
| 32 | ``` |
| 33 | |
| 34 | ## License |
| 35 | |
| 36 | MIT — Copyright (c) Steve <contact@stevedylan.dev> |