diff options
Diffstat (limited to 'internal/app/config.go')
| -rw-r--r-- | internal/app/config.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/internal/app/config.go b/internal/app/config.go index 298925de..758dcd08 100644 --- a/internal/app/config.go +++ b/internal/app/config.go @@ -62,8 +62,8 @@ type SandboxConfig struct { NoNewSession bool `json:"no_new_session,omitempty"` // map target user uid to privileged user uid in the user namespace MapRealUID bool `json:"map_real_uid"` - // mediated access to wayland socket - Wayland bool `json:"wayland,omitempty"` + // direct access to wayland socket + DirectWayland bool `json:"direct_wayland,omitempty"` // final environment variables Env map[string]string `json:"env"` @@ -190,13 +190,13 @@ func Template() *Config { Outer: "/var/lib/persist/home/org.chromium.Chromium", Inner: "/var/lib/fortify", Sandbox: &SandboxConfig{ - Hostname: "localhost", - UserNS: true, - Net: true, - NoNewSession: true, - MapRealUID: true, - Dev: true, - Wayland: false, + Hostname: "localhost", + UserNS: true, + Net: true, + NoNewSession: true, + MapRealUID: true, + Dev: true, + DirectWayland: false, // example API credentials pulled from Google Chrome // DO NOT USE THESE IN A REAL BROWSER Env: map[string]string{ |
