From 51a924675a39c21ac157cedd5dd71624b9e3ce0c Mon Sep 17 00:00:00 2001 From: Igor Chubin Date: Sat, 27 Feb 2021 19:11:37 +0100 Subject: [PATCH] Update doc/terminal-images.md `icat` can fetch images directly, no `curl` call needed (#574) --- doc/terminal-images.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/terminal-images.md b/doc/terminal-images.md index 1f66d27..b9c2ad7 100644 --- a/doc/terminal-images.md +++ b/doc/terminal-images.md @@ -61,3 +61,9 @@ To view images in kitty: ``` curl -s v3.wttr.in/Tabasco.png | kitty icat --align=left ``` + +or even without `curl` at all, because `icat` knows how to handle URLs: + +``` +kitty icat --align=left https://v3.wttr.in/Tabasco.png +```