From eebc55628386900d3c4207660a7a122f2cec7a5d Mon Sep 17 00:00:00 2001 From: Jeffrey Serio Date: Mon, 10 Mar 2025 06:39:07 -0500 Subject: [PATCH] Add newsboat config --- config/.config/newsboat/config | 25 +++++++++++++++++++++++++ just/.justfile | 6 +++--- 2 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 config/.config/newsboat/config diff --git a/config/.config/newsboat/config b/config/.config/newsboat/config new file mode 100644 index 0000000..156acc6 --- /dev/null +++ b/config/.config/newsboat/config @@ -0,0 +1,25 @@ +urls-source "freshrss" +freshrss-url "https://freshrss.hyperreal.coffee/api/greader.php" +freshrss-login "hyperreal" +freshrss-passwordfile "/home/jas/.freshrss_password" +freshrss-min-items 200 +browser librewolf + +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 diff --git a/just/.justfile b/just/.justfile index 69a9450..18b2f4e 100644 --- a/just/.justfile +++ b/just/.justfile @@ -16,7 +16,7 @@ deploy-dotfiles: cp -rfv {{dotfiles_repo}}/zsh/.zshrc.d {{homedir}} cp -rfv {{dotfiles_repo}}/config/.config/bat {{configdir}} cp -rfv {{dotfiles_repo}}/config/.config/git {{configdir}} - cp -rfv {{dotfiles_repo}}/config/.config/ghostty {{configdir}} + cp -rfv {{dotfiles_repo}}/config/.config/newsboat {{configdir}} cp -fv {{dotfiles_repo}}/config/.config/starship.toml {{configdir}} cp -rfv {{dotfiles_repo}}/config/.config/zellij {{configdir}} @@ -27,7 +27,7 @@ save-dotfiles: cp -rfv {{homedir}}/.zshrc.d {{dotfiles_repo}}/zsh/ cp -rfv {{configdir}}/bat {{dotfiles_repo}}/config/.config/ cp -rfv {{configdir}}/git {{dotfiles_repo}}/config/.config/ - cp -rfv {{configdir}}/ghostty {{dotfiles_repo}}/config/.config/ + cp -rfv {{configdir}}/newsboat {{dotfiles_repo}}/config/.config/ cp -fv {{configdir}}/starship.toml {{dotfiles_repo}}/config/.config/ cp -rfv {{configdir}}/zellij {{dotfiles_repo}}/config/.config/ @@ -38,7 +38,7 @@ clean-dotfiles: rm -rfv {{homedir}}/.zshrc.d rm -rfv {{configdir}}/bat rm -rfv {{configdir}}/git - rm -rfv {{configdir}}/ghostty + rm -rfv {{configdir}}/newsboat rm -fv {{configdir}}/starship.toml rm -rfv {{configdir}}/zellij