From 24168ed86ecf20a44f6dce8bdacfcb2c1471844b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Wed, 24 Jul 2024 15:58:19 +0200 Subject: [PATCH] osc: kitty notifications: don't include '?' in the query reply No need to say we support queries, in the query reply... --- osc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc.c b/osc.c index 6a04386c..c5073ff6 100644 --- a/osc.c +++ b/osc.c @@ -677,7 +677,7 @@ kitty_notification(struct terminal *term, char *string) char reply[128]; int n = xsnprintf( reply, sizeof(reply), - "\033]99;i=%s:p=?;p=title,body,?:a=focus,report:o=%s:u=0,1,2%s", + "\033]99;i=%s:p=?;p=title,body,icon:a=focus,report:o=%s:u=0,1,2%s", id, when_str, terminator); term_to_slave(term, reply, n);