newsraft - Terminal RSS Feed Reader - Linux TUI
gotbletu
https://codeberg.org/newsraft/newsraft Newsraft is a feed reader with ncurses user interface. It's greatly inspired by Newsboat and tries to be its lightweight counterpart.
#rss #terminal #linux #newsboat #newsraft #tui #commandline #cli
====================== generate default configs
mkdir -p ~/.config/newsraft cp /usr/share/newsraft/examples/config ~/.config/newsraft cp /usr/share/newsraft/examples/feeds ~/.config/newsraft
====================== ~/.config/newsraft/config
Command binding for opening links with feh image viewer.
bind i exec feh "%l"
copy to system clipboard and tmux clipboard
bind y copy-to-clipboard ; exec tmux set-buffer "%l"
This will launch mpv in the background.
bind m exec mpv --no-terminal "%l" &
bind m exec tsp mpv --ontop --no-border --focus-on=never --force-window --autofit=500x280 --geometry=-15-110 "%l" bind M exec tsp mpv --fullscreen "%l"
edit rss feeds or config (require restart newsraft to apply changes)
bind E exec $EDITOR ~/.config/newsraft/feeds bind C exec $EDITOR ~/.config/newsraft/config
open with tui/gui web browser
bind o exec w3m "%l" bind O exec $BROWSER "%l"
show database size
bind V exec (ls -lh ~/.local/share/newsraft/ && echo ~/.local/share/newsraft) | less -C
view manpages and hotkey action section
bind H exec man newsraft bind A exec man -P 'less -p "^ACTIONS"' newsraft
watch task-spooler queue (ctrl-c to return)
bind t exec watch -t "tsp | cut -c-"$(tput cols)""
clear all finished task-spooler jobs
bind T exec tsp -C ... https://www.youtube.com/watch?v=gE-PhXnvp30
120981114 Bytes