RSS

Note: Configuration from this KB can be applied through this Ansible playbook.

Newsboat

Newsboat is a cli RSS reader usable also with Termux. There is only one thing that sucks on small screens, and that is that Newsboat does not wrap article tittle names.

TLDR here is the config:

$ cat .newsboat/config
# Quality of life stuff
refresh-on-startup yes
show-read-feeds no
show-read-articles no

# Open browser articles in browser called from termux
browser "termux-open-url %u"

# unbind keys
unbind-key j
unbind-key k
unbind-key J
unbind-key K

# bind keys - vim style
bind-key j down
bind-key k up
bind-key l open
bind-key RIGHT open
bind-key h quit
bind-key LEFT quit
bind-key H prev-feed
bind-key L next-feed

# bind keys - show read feeds with keybind
bind-key R toggle-show-read-feeds

# List article name only due to screen size
articlelist-format "%t"