diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2018-05-16 12:29:30 +0900 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2018-05-16 16:50:56 +0900 |
commit | 89ae1792b58a1a29afce7e00da06593187297459 (patch) | |
tree | 770f7f47574311c5ee91f8217defb4e6ba0a41a4 /sway/server.c | |
parent | 3b7cae0e31395d3515c75be1563be3de9373281a (diff) |
sway: run commands without waiting for Xwayland
Xwayland is lazy now, there is no need to wait at all
Diffstat (limited to 'sway/server.c')
-rw-r--r-- | sway/server.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/sway/server.c b/sway/server.c index 050ddf56..e47cc5b6 100644 --- a/sway/server.c +++ b/sway/server.c @@ -19,27 +19,11 @@ #include <wlr/util/log.h> // TODO WLR: make Xwayland optional #include <wlr/xwayland.h> -#include "sway/commands.h" #include "sway/config.h" #include "sway/input/input-manager.h" #include "sway/server.h" #include "sway/tree/layout.h" -static void server_ready(struct wl_listener *listener, void *data) { - wlr_log(L_DEBUG, "Compositor is ready, executing cmds in queue"); - // Execute commands until there are none left - config->active = true; - while (config->cmd_queue->length) { - char *line = config->cmd_queue->items[0]; - struct cmd_results *res = execute_command(line, NULL); - if (res->status != CMD_SUCCESS) { - wlr_log(L_ERROR, "Error on line '%s': %s", line, res->error); - } - free_cmd_results(res); - free(line); - list_del(config->cmd_queue, 0); - } -} bool server_init(struct sway_server *server) { wlr_log(L_DEBUG, "Initializing Wayland server"); @@ -93,10 +77,6 @@ bool server_init(struct sway_server *server) { wl_signal_add(&server->xwayland->events.new_surface, &server->xwayland_surface); server->xwayland_surface.notify = handle_xwayland_surface; - wl_signal_add(&server->xwayland->events.ready, - &server->xwayland_ready); - // TODO: call server_ready now if xwayland is not enabled - server->xwayland_ready.notify = server_ready; // TODO: configurable cursor theme and size server->xcursor_manager = wlr_xcursor_manager_create(NULL, 24); |