diff options
| author | twells46 <173561638+twells46@users.noreply.github.com> | 2025-11-29 08:18:48 -0600 |
|---|---|---|
| committer | twells46 <173561638+twells46@users.noreply.github.com> | 2025-11-29 08:18:48 -0600 |
| commit | 9d70dfc76159cffc6d85530ce7d9897118d9677c (patch) | |
| tree | e2171e954cdeed661b8e8af3500992d9b656f96e /config.def.h | |
| parent | b1c93ae35772f4fb3a923605fefa02bf1fee585e (diff) | |
Add sixel patch
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 2cd740a..e824b5d 100644 --- a/config.def.h +++ b/config.def.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; |