From 338ce8d0aae3bd54d15650fe97c4b2b7d1bd818c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sun, 3 May 2020 00:17:20 +0200 Subject: [PATCH] fix(newsboat): style --- configs/newsboat.nix | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/configs/newsboat.nix b/configs/newsboat.nix index f55710a..e86f1a0 100644 --- a/configs/newsboat.nix +++ b/configs/newsboat.nix @@ -5,7 +5,14 @@ let linkhandler-bin = "${scripts.linkhandler}/bin/linkhandler"; newsboat-config = pkgs.writeText "config" '' - auto-reload yes + auto-reload no + + # dont keep a search history + history-limit 0 + + datetime-format %F + + text-width 85 external-url-viewer "${pkgs.urlscan}/bin/urlscan -dc -r '${linkhandler-bin} {}'" browser ${linkhandler-bin} @@ -31,11 +38,13 @@ let save-path ${newsboat-home}/saved/ - color listnormal cyan default - color listfocus black yellow standout bold - color listnormal_unread blue default - color listfocus_unread yellow default bold + color background white black + color listnormal white black + color listnormal_unread white black bold + color listfocus blue black + color listfocus_unread blue black bold color info red black bold + color article white black ''; in {