From 22854acdf14babbbc44e0012b09c48f5869a5b15 Mon Sep 17 00:00:00 2001 From: Maas Lalani Date: Mon, 15 May 2023 10:26:43 -0400 Subject: [PATCH] fix: use `--writable` command for `ttyd` --- tty.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tty.go b/tty.go index 820c1076..6ca3b217 100644 --- a/tty.go +++ b/tty.go @@ -34,6 +34,7 @@ func buildTtyCmd(port int, shell Shell) *exec.Cmd { "-t", "enableSixel=true", "-t", "customGlyphs=true", "--once", // will allow one connection and exit + "--writable", } args = append(args, shell.Command...)