Commit 2e1142c

Eric Bower  ·  2025-12-05 13:41:07 -0500 EST
parent 7d2b71e
chore: add kitty graphics protocol example script
1 files changed,  +5, -0
A kitty_gfx.sh
+5, -0
1@@ -0,0 +1,5 @@
2+#!/bin/bash
3+
4+# transmit a PNG (format=100 → PNG)
5+data=$(base64 -w0 ./logo.png)
6+printf '\033_Ga=T,f=100;%s\033\\' "$data"