An RSS/Atom feed reader for text terminals https://newsboat.org/
Find a file
Alexander Batischev 7dde8dbc37
Merge pull request #3248 from newsboat/dependabot/cargo/url-2.5.8
Chore(deps): bump url from 2.5.7 to 2.5.8
2026-01-06 11:43:36 +03:00
.github Chore(deps): bump actions/cache from 4 to 5 2025-12-12 06:00:42 +00:00
3rd-party Update expected-lite to 0.9.0 2025-07-19 21:54:48 +03:00
contrib Update monochrome 2025-05-25 19:39:34 +00:00
doc Fix saving flag detection in Miniflux integration 2026-01-02 18:26:34 +01:00
docker Prepare for next release 2025-12-28 13:03:53 +03:00
filter Remove trailing whitespace 2022-05-06 13:55:56 +02:00
git-hooks Neutralize pre-commit hook for now 2018-07-29 19:00:12 +03:00
include Avoid accidentally adding entries to RegexManager::locations 2026-01-02 19:34:27 +01:00
mk Use strong typing for specifying dialogs 2025-12-27 10:55:47 +01:00
po Updated Italian translations 2025-12-26 19:20:35 +01:00
rss Fix cookies not written by curl 8.17+ 2025-12-26 12:07:03 +03:00
rust Chore(deps): bump url from 2.5.7 to 2.5.8 2026-01-06 06:01:08 +00:00
snap Revert "allow reading urls file from user home in .newsboat dir" 2023-02-20 22:41:18 +03:00
src Avoid accidentally adding entries to RegexManager::locations 2026-01-02 19:34:27 +01:00
stfl Move STFL style defaults into C++ code 2025-02-28 21:56:17 +01:00
test Merge pull request #3157 from dennisschagt/strongly-typed-dialog-enum 2026-01-02 19:24:54 +01:00
.astylerc Separate function arguments with comma *and* space 2021-10-22 21:04:53 +03:00
.cirrus.yml Prepare for next release 2025-12-28 13:03:53 +03:00
.clang-tidy Define clang-tidy checks as a list 2025-01-26 22:24:14 +02:00
.editorconfig Add Rust indent settings to editorconfig 2023-06-14 15:03:52 +00:00
.gitattributes Move Coveralls job from Travis to GitHub Actions 2020-11-23 15:05:49 +03:00
.gitignore Port gen-example-config to awk 2025-07-12 17:34:19 +03:00
.rustfmt.toml .rustfmt.toml: rename deprecated fn_args_layout to fn_params_layout 2023-08-26 17:41:58 +03:00
Cargo.lock Chore(deps): bump url from 2.5.7 to 2.5.8 2026-01-06 06:01:08 +00:00
Cargo.toml Bring Cargo.toml in line with master branch 2025-08-05 16:52:51 +03:00
CHANGELOG.md Prepare for next release 2025-12-28 13:03:53 +03:00
config.h Use ""_path outside newsboat namespace 2025-08-03 14:16:50 +03:00
config.sh Update catch to v3 2024-05-01 07:34:53 +02:00
CONTRIBUTING.md (GPG|PGP) → OpenPGP 2024-08-07 21:00:13 +03:00
LICENSE Bump copyright notices 2025-03-23 21:55:32 +03:00
logo.svg Re-draw logo from scratch, increase the hull size slightly 2019-11-03 18:58:29 +03:00
Makefile Port gen-example-config to awk 2025-07-12 17:34:19 +03:00
newsboat.cpp Implement individual fixes 2025-08-03 14:08:50 +03:00
podboat.cpp Cleanup header includes 2024-05-18 18:47:26 +02:00
README.md Prepare for next release 2025-12-28 13:03:53 +03:00
txt2h Use "NEWSBOAT" in include guards 2017-10-13 22:41:29 +03:00

Newsboat Cirrus CI Build Status GitHub Actions: Coveralls status Coverage Status CII Best Practices

Newsboat logo

Newsboat is an RSS/Atom feed reader for the text console. It's an actively maintained fork of Newsbeuter.

A feed reader pulls updates directly from sites like blogs and news agencies, and lets you review them in a single interface. Many times, the feed includes the full text of the update, so you don't even need to start a web browser! You can learn more about feed readers on Wikipedia.

Viewing an article in Newsboat

Notable features

Downloading

You can download the latest version of Newsboat from the official site: https://newsboat.org/

Alternatively, you can check out the latest version from the Git repository:

$ git clone https://github.com/newsboat/newsboat.git

Dependencies

Newsboat depends on a number of libraries, which need to be installed before Newsboat can be compiled.

Developers will also need:

Installation

There are numerous ways:

  • install from your distribution's repository (a lot of distros have a package);

  • install via Snap:

    $ sudo snap install newsboat
    

    Our snap only supports xdg-open as the browser, and you can't run arbitrary scripts for rendering and bookmarking. The reason is strict confinement; if we disabled it, the snap would be no better than a distribution's package;

  • build from source with Docker. Note that the resulting binary might not run outside of that same Docker container if your system doesn't have all the necessary libraries, or if their versions are too old;

  • build from source in a chroot: to avoid polluting your system with developer packages, or to avoid upgrading, you might use a tool like debootstrap to create an isolated environment. Once that's done, just build from source as outlined in the next item;

  • build from source.

    Install everything that's listed in the "Dependencies" section above. Make sure to install the header files as well (on Debian and derivatives, headers are in -dev packages, e.g. libsqlite3-dev.)

    Cross-compilers need to set CARGO_BUILD_TARGET; see cargo documentation.

    Then compile and install with:

    $ make                   #  pass -jN to use N CPU cores, e.g. -j8
    $ sudo make install      #  install everything under /usr/local
    

    To install to a different directory, pass prefix like so: sudo make prefix=/opt/newsboat install.

    To uninstall, run sudo make uninstall.

Support

Contributing

See CONTRIBUTING.md

License

Newsboat is licensed under the MIT license; see the LICENSE file. Logo by noobilanderi, licensed under CC BY 4.0.