From f72e1cd3fbee4869afa3b71bb2e395a7333d22b1 Mon Sep 17 00:00:00 2001 From: Loic Coyle Date: Fri, 7 May 2021 16:52:49 +0200 Subject: [PATCH] advertise sixel support --- config.def.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config.def.h b/config.def.h index a143e82..e556761 100644 --- a/config.def.h +++ b/config.def.h @@ -37,7 +37,11 @@ char *scroll = NULL; char *stty_args = "stty raw pass8 nl -echo -iexten -cstopb 38400"; /* identification sequence returned in DA and DECID */ +#if SIXEL_PATCH +char *vtiden = "\033[?12;4c"; +#else char *vtiden = "\033[?6c"; +#endif /* Kerning / character bounding-box multipliers */ static float cwscale = 1.0;