- commit
- 2e1142c
- parent
- 7d2b71e
- author
- Eric Bower
- date
- 2025-12-05 13:41:07 -0500 EST
chore: add kitty graphics protocol example script
1 files changed,
+5,
-0
+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"