diff options
author | emersion <contact@emersion.fr> | 2018-05-08 23:04:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-08 23:04:26 +0100 |
commit | 8e831cd416e2eb0c47bbd097422822a0c8888459 (patch) | |
tree | d4e8efe946a18a6940ecfb7471a7fa203a5f6124 /rootston/desktop.c | |
parent | c5c5747060312817c025eab5cdcec8508232dde1 (diff) | |
parent | 6936be984fbeca83feae96d92bc8fd1d2b0ec4af (diff) |
Merge pull request #959 from VincentVanlaer/xwayland-lazy
Add the option to start Xwayland only when a client connects
Diffstat (limited to 'rootston/desktop.c')
-rw-r--r-- | rootston/desktop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/desktop.c b/rootston/desktop.c index 192c7da0..178a975a 100644 --- a/rootston/desktop.c +++ b/rootston/desktop.c @@ -822,7 +822,7 @@ struct roots_desktop *desktop_create(struct roots_server *server, if (config->xwayland) { desktop->xwayland = wlr_xwayland_create(server->wl_display, - desktop->compositor); + desktop->compositor, config->xwayland_lazy); wl_signal_add(&desktop->xwayland->events.new_surface, &desktop->xwayland_surface); desktop->xwayland_surface.notify = handle_xwayland_surface; |