Terminal-based Reddit comment streamer built with Go and tview. Like reddit-stream.com, but in your terminal.
Grab the latest binary for your platform from Releases.
No Reddit API credentials required.
- Real-time comment streaming with auto-refresh
- Live comment filtering
- Threaded comment display
- Keyboard-driven interface
cd go
go build -o bin/reddit-stream-console ./cmd/reddit-stream-console
./bin/reddit-stream-console| Key | Action |
|---|---|
j/k or ↑/↓ |
Navigate |
Enter |
Select |
/ |
Filter comments |
r |
Refresh comments |
t |
Cycle theme (saved to app_config.json) |
h / v |
Split view (horizontal / vertical) |
Tab |
Switch active pane (split mode) |
Esc |
Go back |
q |
Quit |
The app works out of the box with sensible defaults (soccer, NFL, and FantasyPL match threads). To customize the menu, create a config/menu_config.json file.
Config file search order:
~/.reddit-stream-console/config/menu_config.json(home directory)- Next to the executable
- One directory above the executable
- Two directories above the executable
If no config file is found, built-in defaults are used.
See config/menu_config.json for an example configuration.
Set theme in config/app_config.json to one of the bundled palettes:
{
"debug_logging": false,
"theme": "catppuccin-mocha"
}Available themes:
default(warm cream / sage / teal)catppuccin-mocha,catppuccin-macchiato,catppuccin-frappe,catppuccin-lattedraculanordgruvbox-darktokyo-night
An empty or unknown name falls back to default.
MIT
