newsboat configuration

This commit is contained in:
Sakooooo 2023-07-29 16:08:02 +03:00
parent 1c8ff97dd4
commit 6acecc697e
Signed by: sako
GPG key ID: 3FD715D87D7725E0
4 changed files with 34 additions and 0 deletions

1
config/newsboat/config Normal file
View file

@ -0,0 +1 @@
macro i set pager "./kitty-img-pager.sh"; open; set pager internal

View file

@ -0,0 +1,24 @@
#!/usr/bin/env bash
# Shows images, scaled to terminal dimensions, via kitty's icat.
# Designed for image-feeds like xkcd.com.
# by Timm Heuss (https://github.com/heussd/) - CC-BY 4.0
#
# Usage:
# 1) Define a new macro in your config:
# macro i set pager "$PATHTOTHIS/kitty-img-pager"; open; set pager internal
# 2) Now you use this pager in articleview using the hotkey <comma>+<i>
set -o errexit
set -o pipefail
set -o nounset
image=$(grep -E -o "https?://[a-zA-Z0-9./?=_%:-]*" < "${1}" | tail -1)
# Detect terminal dimensions
dims="$(tput cols)x$(tput lines)@0x0"
clear
kitty +kitten icat --clear
kitty +kitten icat --hold --scale-up --place "$dims" "$image"
clear

1
config/newsboat/urls Normal file
View file

@ -0,0 +1 @@
https://xkcd.com/rss.xml

View file

@ -12,5 +12,13 @@ in
users.users.sako.packages = with pkgs; [
newsboat
];
home-manager.users.sako = { pkgs, ...}: {
xdg.configFile = {
newsboat = {
source = ../../../config/newsboat;
recursive = true;
};
};
};
};
}