From cc7568c498cea7bba96682cc69c04183a8ae0353 Mon Sep 17 00:00:00 2001 From: Aaron Lindsay Date: Tue, 29 Jul 2025 10:44:10 -0400 Subject: [PATCH] Update config.h for sixel support --- config.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config.h b/config.h index 021e1c6..b87eea5 100644 --- a/config.h +++ b/config.h @@ -23,7 +23,10 @@ char *scroll = NULL; char *stty_args = "stty raw pass8 nl -echo -iexten -cstopb 38400"; /* identification sequence returned in DA and DECID */ -char *vtiden = "\033[?6c"; +char *vtiden = "\033[?62;4c"; /* VT200 family (62) with sixel (4) */ + +/* sixel rgb byte order: LSBFirst or MSBFirst */ +int const sixelbyteorder = LSBFirst; /* Kerning / character bounding-box multipliers */ static float cwscale = 1.0;