This commit is contained in:
Sakooooo 2023-07-29 16:24:05 +03:00
parent 8873b62a57
commit b15108ceed
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

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