No description
  • C++ 74.7%
  • Rust 21.2%
  • Shell 1.1%
  • Dockerfile 0.9%
  • Makefile 0.8%
  • Other 1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Dennis van der Schagt 0b51274fd7
Merge pull request #3415 from dennisschagt/remove-colormanager-setter
ColorManager: Return styles instead of requiring setter function
2026-07-19 20:16:15 +02:00
.github Merge pull request #3397 from newsboat/feature/ci-bump-freebsd 2026-06-28 12:47:53 +03: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 Implemented the pb-reload command (preserves items marked as finished/deleted) (#3376) 2026-06-28 14:43:52 +03:00
docker CI: bump Rust to 1.97.1 2026-07-19 13:27:29 +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 ColorManager: Return styles instead of requiring setter function 2026-07-19 20:00:35 +02:00
mk Reduce duplication in file and directory browsers 2026-06-27 17:18:42 +02:00
po Update Russian and Ukrainian PO files (#3375) 2026-06-19 18:37:55 +03:00
rss Remove write-only feed encoding field 2026-07-12 19:51:16 +02:00
rust Fix Clippy warnings 2026-07-13 18:58:47 +03:00
snap Fix snap build on armhf 2026-07-06 19:21:31 +03:00
src ColorManager: Return styles instead of requiring setter function 2026-07-19 20:00:35 +02:00
stfl Move STFL style defaults into C++ code 2025-02-28 21:56:17 +01:00
test ColorManager: Return styles instead of requiring setter function 2026-07-19 20:00:35 +02:00
.astylerc Separate function arguments with comma *and* space 2021-10-22 21:04: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 the everything group with 2 updates 2026-07-18 06:52:50 +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 2026-06-21 13:57:40 +03:00
config.h Use ""_path outside newsboat namespace 2025-08-03 14:16:50 +03:00
config.sh Improve error message in case both json and json-c are missing 2026-03-28 19:02:50 +01:00
CONTRIBUTING.md (GPG|PGP) → OpenPGP 2024-08-07 21:00:13 +03:00
LICENSE Bump copyright notices 2026-03-22 17:50:52 +03:00
logo.svg Re-draw logo from scratch, increase the hull size slightly 2019-11-03 18:58:29 +03:00
Makefile Silence "unused function" warning from json-c 2026-07-11 11:59:54 +02:00
newsboat.cpp Revert "Initialize LC_TIME locale from environment" 2026-06-05 18:47:19 +03:00
podboat.cpp Revert "Initialize LC_TIME locale from environment" 2026-06-05 18:47:19 +03:00
README.md Prepare for next release 2026-06-21 13:57:40 +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.