Feedr is a feature-rich terminal-based RSS feed reader written in Rust. It provides a clean, intuitive TUI interface for managing and reading RSS feeds with elegant visuals and smooth keyboard navigation.
- Dashboard View: See the latest articles across all your feeds
- Feed Management: Subscribe to and organize multiple RSS feeds
- Rich Content Display: Beautiful formatting of articles with HTML-to-text conversion
- Smart Search: Quickly find content across all your feeds
- Browser Integration: Open articles in your default browser
- Background Refresh: Automatic feed updates with configurable intervals and smart rate limiting
- Rate Limiting: Prevents "too many requests" errors with per-domain request throttling (ideal for Reddit feeds)
- Configurable: Customize timeouts, UI behavior, and default feeds via TOML config file
- XDG Compliant: Follows standard directory specifications for configuration and data storage
- Rust and Cargo (install from https://rustup.rs/)
cargo install feedrgit clone https://github.com/bahdotsh/feedr.git
cd feedr
cargo build --releaseThe binary will be available at target/release/feedr.
Run the application:
feedr- When you open Feedr for the first time, press
ato add a feed - Enter a valid RSS feed URL (e.g.,
https://news.ycombinator.com/rss) - Use arrow keys to navigate and
Enterto view items - Press
oto open the current article in your browser
| Key | Action |
|---|---|
Tab |
Cycle between views |
q |
Quit application |
r |
Refresh all feeds |
/ |
Search mode |
| Key | Action |
|---|---|
f |
Go to feeds list |
a |
Add a new feed |
↑/↓ |
Navigate items |
Enter |
View selected item |
o |
Open link in browser |
| Key | Action |
|---|---|
h / Esc |
Go to dashboard |
a |
Add a new feed |
d |
Delete selected feed |
↑/↓ |
Navigate feeds |
Enter |
View feed items |
| Key | Action |
|---|---|
h / Esc |
Back to feeds list |
Home |
Go to dashboard |
↑/↓ |
Navigate items |
Enter |
View item details |
o |
Open item in browser |
| Key | Action |
|---|---|
h / Esc |
Back to feed items |
Home |
Go to dashboard |
o |
Open item in browser |
Feedr supports customization through a TOML configuration file that follows XDG Base Directory specifications.
- Linux/macOS:
~/.config/feedr/config.toml - Windows:
%APPDATA%\feedr\config.toml
The configuration file is automatically generated with default values on first run if it doesn't exist.
# Feedr Configuration File
[general]
max_dashboard_items = 100 # Maximum number of items shown on dashboard
auto_refresh_interval = 0 # Auto-refresh interval in seconds (0 = disabled)
refresh_enabled = false # Enable automatic background refresh
refresh_rate_limit_delay = 2000 # Delay in milliseconds between requests to same domain
[network]
http_timeout = 15 # HTTP request timeout in seconds
user_agent = "Mozilla/5.0 (compatible; Feedr/1.0; +https://github.com/bahdotsh/feedr)"
[ui]
tick_rate = 100 # UI update rate in milliseconds
error_display_timeout = 3000 # Error message duration in milliseconds
# Optional: Define default feeds to load on first run
[[default_feeds]]
url = "https://example.com/feed.xml"
category = "News"- max_dashboard_items: Controls how many items are displayed on the dashboard (default: 100)
- auto_refresh_interval: Automatically refresh feeds at specified interval in seconds (0 disables auto-refresh)
- refresh_enabled: Master switch to enable/disable automatic background refresh (default: false)
- refresh_rate_limit_delay: Delay in milliseconds between requests to the same domain to prevent "too many requests" errors (default: 2000ms). This is especially useful for Reddit feeds and other rate-limited services.
- http_timeout: Timeout for HTTP requests when fetching feeds (useful for slow connections)
- user_agent: Custom User-Agent string for HTTP requests
- tick_rate: How frequently the UI updates in milliseconds (lower = more responsive, higher = less CPU usage)
- error_display_timeout: How long error messages are displayed in milliseconds
To enable automatic refresh every 5 minutes with rate limiting:
[general]
refresh_enabled = true
auto_refresh_interval = 300 # 5 minutes
refresh_rate_limit_delay = 2000 # 2 seconds between requests to same domainNote: Rate limiting groups feeds by domain and staggers requests to prevent hitting API limits. For example, if you have multiple Reddit feeds, they will be fetched with a 2-second delay between each request to avoid getting blocked.
You can define feeds to be automatically loaded on first run:
[[default_feeds]]
url = "https://news.ycombinator.com/rss"
category = "Tech"
[[default_feeds]]
url = "https://example.com/feed.xml"
category = "News"Feedr stores your bookmarks, categories, and read items in:
- Linux/macOS:
~/.local/share/feedr/feedr_data.json - Windows:
%LOCALAPPDATA%\feedr\feedr_data.json
Feedr automatically migrates data from older versions to the new XDG-compliant locations. Your existing data will be preserved and automatically moved to the correct location on first run.
- ratatui: Terminal UI framework
- crossterm: Terminal manipulation
- reqwest: HTTP client
- rss: RSS parsing
- html2text: HTML to text conversion
- chrono: Date and time handling
- serde: Serialization/deserialization
MIT
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request

