From ce0eeb84575ba19763c221b0302fefdef0e294fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20L=2E=20Hansen?= Date: Thu, 22 Apr 2021 10:30:00 -0700 Subject: [PATCH] Switch back to xterm as the default I somehow got the impression that xterm was the legacy one, but according to the git history, hterm is the legacy and now we're caught up with xterm, so let's stick with that. --- server/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/options.go b/server/options.go index f331d11..6e950a4 100644 --- a/server/options.go +++ b/server/options.go @@ -30,7 +30,7 @@ type Options struct { Width int `hcl:"width" flagName:"width" flagDescribe:"Static width of the screen, 0(default) means dynamically resize" default:"0"` Height int `hcl:"height" flagName:"height" flagDescribe:"Static height of the screen, 0(default) means dynamically resize" default:"0"` WSOrigin string `hcl:"ws_origin" flagName:"ws-origin" flagDescribe:"A regular expression that matches origin URLs to be accepted by WebSocket. No cross origin requests are acceptable by default" default:""` - Term string `hcl:"term" flagName:"term" flagDescribe:"Terminal name to use on the browser, one of xterm or hterm." default:"hterm"` + Term string `hcl:"term" flagName:"term" flagDescribe:"Terminal name to use on the browser, one of xterm or hterm." default:"xterm"` TitleVariables map[string]interface{} }