mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
Add option to rootston to start xwayland lazy
This commit is contained in:
parent
c80bf1591e
commit
31861b3a7a
3 changed files with 6 additions and 1 deletions
|
|
@ -240,6 +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) {
|
||||
config->xwayland = true;
|
||||
config->xwayland_lazy = true;
|
||||
} else if (strcasecmp(value, "false") == 0) {
|
||||
config->xwayland = false;
|
||||
} else {
|
||||
|
|
@ -389,6 +392,7 @@ struct roots_config *roots_config_create_from_args(int argc, char *argv[]) {
|
|||
}
|
||||
|
||||
config->xwayland = true;
|
||||
config->xwayland_lazy = false;
|
||||
wl_list_init(&config->outputs);
|
||||
wl_list_init(&config->devices);
|
||||
wl_list_init(&config->keyboards);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue