mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
Add newsboat
This commit is contained in:
parent
20237ad40c
commit
dcfbbeec27
|
@ -1,6 +1,7 @@
|
|||
_: {
|
||||
imports = [
|
||||
./git
|
||||
./newsboat
|
||||
./gpg.nix
|
||||
./eza.nix
|
||||
./man.nix
|
||||
|
|
73
home/programs/terminal/tools/newsboat/default.nix
Normal file
73
home/programs/terminal/tools/newsboat/default.nix
Normal file
|
@ -0,0 +1,73 @@
|
|||
# Config copied from https://git.notashelf.dev/NotAShelf/nyx
|
||||
{ pkgs, lib, ... }: let
|
||||
inherit (lib) getExe;
|
||||
|
||||
mpv = "${getExe pkgs.mpv}";
|
||||
glow = "${getExe pkgs.glow}";
|
||||
pandoc = "${getExe pkgs.pandoc}";
|
||||
in {
|
||||
programs.newsboat = {
|
||||
enable = true;
|
||||
autoReload = true;
|
||||
|
||||
inherit ((import ./urls.nix)) urls;
|
||||
|
||||
extraConfig = ''
|
||||
error-log /dev/null
|
||||
|
||||
download-full-page yes
|
||||
download-retries 3
|
||||
cookie-cache ~/.cache/newsboat/cookies.txt
|
||||
|
||||
auto-reload yes
|
||||
max-items 0
|
||||
scrolloff 999
|
||||
reload-threads 100
|
||||
|
||||
bind-key j down
|
||||
bind-key k up
|
||||
bind-key j next articlelist
|
||||
bind-key k prev articlelist
|
||||
bind-key J next-feed articlelist
|
||||
bind-key K prev-feed articlelist
|
||||
bind-key G end
|
||||
bind-key g home
|
||||
bind-key d pagedown
|
||||
bind-key u pageup
|
||||
bind-key l open
|
||||
bind-key h quit
|
||||
bind-key a toggle-article-read
|
||||
bind-key n next-unread
|
||||
bind-key N prev-unread
|
||||
bind-key D pb-download
|
||||
bind-key U show-urls
|
||||
bind-key x pb-delete
|
||||
|
||||
color listnormal color15 default
|
||||
color listnormal_unread color2 default
|
||||
color listfocus_unread color2 color0
|
||||
color listfocus default color0
|
||||
color background default default
|
||||
color article default default
|
||||
color end-of-text-marker color8 default
|
||||
color info color4 color8
|
||||
color hint-separator default color8
|
||||
color hint-description default color8
|
||||
color title color14 color8
|
||||
|
||||
highlight article "^(Feed|Title|Author|Link|Date): .+" color4 default bold
|
||||
highlight article "^(Feed|Title|Author|Link|Date):" color14 default bold
|
||||
highlight article "\\((link|image|video)\\)" color8 default
|
||||
highlight article "https?://[^ ]+" color4 default
|
||||
highlight article "\[[0-9]+\]" color6 default bold
|
||||
user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36"
|
||||
|
||||
html-renderer "${pandoc} --from=html -t markdown_github-raw_html"
|
||||
pager "${glow} --pager --width 72"
|
||||
|
||||
# macros
|
||||
macro v set browser "${mpv} %u" ; open-in-browser ; set browser "firefox %u" -- "Open video on mpv"
|
||||
macro , open-in-browser
|
||||
'';
|
||||
};
|
||||
}
|
60
home/programs/terminal/tools/newsboat/urls.nix
Normal file
60
home/programs/terminal/tools/newsboat/urls.nix
Normal file
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
urls = [
|
||||
# Weekly NixOS news and some other stuff
|
||||
{
|
||||
title = "NixOS Weekly";
|
||||
tags = ["news" "twitter"];
|
||||
url = "https://weekly.nixos.org/feeds/all.rss.xml";
|
||||
}
|
||||
# https://hackaday.com/blog/feed/
|
||||
{
|
||||
title = "Hacker News";
|
||||
url = "https://hnrss.org/newest";
|
||||
tags = ["tech"];
|
||||
}
|
||||
{
|
||||
title = "Hacker News Daily";
|
||||
url = "https://www.daemonology.net/hn-daily/index.rss";
|
||||
tags = ["tech"];
|
||||
}
|
||||
# Reddit
|
||||
{
|
||||
title = "/r/neovim";
|
||||
url = "https://www.reddit.com/r/neovim/.rss";
|
||||
tags = ["neovim" "reddit"];
|
||||
}
|
||||
{
|
||||
title = "/r/unixporn";
|
||||
url = "https://www.reddit.com/r/unixporn/.rss";
|
||||
tags = ["unix" "ricing" "style"];
|
||||
}
|
||||
# Computerphile
|
||||
{
|
||||
title = "Computerphile";
|
||||
url = "https://www.youtube.com/feeds/videos.xml?channel_id=UC9-y-6csu5WGm29I7JiwpnA";
|
||||
tags = ["tech" "youtube"];
|
||||
}
|
||||
# Security news
|
||||
{
|
||||
title = "Krebson Security";
|
||||
url = "https://krebsonsecurity.com/feed/";
|
||||
tags = ["tech" "security"];
|
||||
}
|
||||
|
||||
# Unsorted
|
||||
{url = "https://nitter.net/GergelyOrosz/rss";}
|
||||
{url = "https://feeds.feedburner.com/ThePragmaticEngineer";}
|
||||
{url = "https://www.reddit.com/r/ExperiencedDevs/.rss";}
|
||||
{url = "https://news.ycombinator.com/rss";}
|
||||
{url = "https://programming.dev/feeds/local.xml?sort=Active";}
|
||||
{url = "https://programming.dev/feeds/c/functional_programming.xml?sort=Active";}
|
||||
{url = "https://programming.dev/feeds/c/linux.xml?sort=Active";}
|
||||
{url = "https://programming.dev/feeds/c/experienced_devs.xml?sort=Active";}
|
||||
{url = "https://programming.dev/feeds/c/nix.xml?sort=Active";}
|
||||
{url = "https://programming.dev/feeds/c/commandline.xml?sort=Active";}
|
||||
{url = "https://beehaw.org/feeds/c/technology.xml?sort=Active";}
|
||||
{url = "https://lobste.rs/rss";}
|
||||
{url = "https://kiszamolo.hu/feed";}
|
||||
];
|
||||
}
|
||||
|
Loading…
Reference in a new issue