README.md 1011 B raw
1
<div align="center">
2
3
# bullets
4
5
![demo](https://files.stevedylan.dev/bullets-demo.png)
6
7
Minimal terminal RSS/Atom feed browser. Pass one or more feed URLs, browse entries, open in browser.
8
9
</div>
10
11
## Philosophy
12
13
Designed to be the simplest RSS/Atom feed browser
14
15
- No read/unread
16
- No cron, db, or notifications
17
- No in-app reader
18
19
## Install
20
21
**Homebrew**
22
23
```
24
brew install stevedylandev/tap/bullets
25
```
26
27
**Cargo**
28
29
```
30
cargo install bullets
31
```
32
33
[**Other Install Methods**](https://github.com/stevedylandev/bullets/releases)
34
35
## Usage
36
37
```sh
38
bullets <feed-url> [feed-url ...]
39
```
40
41
Or set feeds via environment variable (comma-separated):
42
43
```sh
44
export BULLETS_FEEDS=https://example.com/feed.xml,stevedylan.dev
45
```
46
47
Feed discovery included — bare domains (e.g. `stevedylan.dev`) are probed for RSS/Atom feeds automatically.
48
49
## Keybindings
50
51
| Key | Action |
52
|-----|--------|
53
| `j` / `↓` | Next entry |
54
| `k` / `↑` | Prev entry |
55
| `Enter` | Open in browser |
56
| `q` | Quit |
57
58
## License
59
60
[MIT](LICENSE)