aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authorVincent Vanlaer <vincent.vanlaer@skynet.be>2018-05-08 22:43:31 +0200
committerVincent Vanlaer <vincent.vanlaer@skynet.be>2018-05-08 22:43:31 +0200
commitef1a24430a5f6d1d3d60c1d506288e3e14f5e077 (patch)
tree53c190284227e07b19dd441398bc8d29764b30e3 /rootston
parent119a6cf35c4163091a699d5987f8d3bab384c95e (diff)
Make lazy xwayland start default in rootston
Diffstat (limited to 'rootston')
-rw-r--r--rootston/config.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/rootston/config.c b/rootston/config.c
index bbdb7990..9a4d77fd 100644
--- a/rootston/config.c
+++ b/rootston/config.c
@@ -240,9 +240,9 @@ static int config_ini_handler(void *user, const char *section, const char *name,
if (strcmp(name, "xwayland") == 0) {
if (strcasecmp(value, "true") == 0) {
config->xwayland = true;
- } else if (strcasecmp(value, "lazy") == 0) {
+ } else if (strcasecmp(value, "immediate") == 0) {
config->xwayland = true;
- config->xwayland_lazy = true;
+ config->xwayland_lazy = false;
} else if (strcasecmp(value, "false") == 0) {
config->xwayland = false;
} else {
@@ -392,7 +392,7 @@ struct roots_config *roots_config_create_from_args(int argc, char *argv[]) {
}
config->xwayland = true;
- config->xwayland_lazy = false;
+ config->xwayland_lazy = true;
wl_list_init(&config->outputs);
wl_list_init(&config->devices);
wl_list_init(&config->keyboards);