fix: set default value of the start cmd of the terminal

This commit is contained in:
Jacky 2024-10-26 21:46:32 +08:00
parent 7ea0aad938
commit 1e2859c184
No known key found for this signature in database
GPG key ID: 215C21B10DF38B4D

View file

@ -4,4 +4,6 @@ type Terminal struct {
StartCmd string `json:"start_cmd" protected:"true"`
}
var TerminalSettings = &Terminal{}
var TerminalSettings = &Terminal{
StartCmd: "login",
}