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/main.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/main.c')
-rw-r--r-- | sway/main.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/sway/main.c b/sway/main.c index efb674b6..e03b8e3a 100644 --- a/sway/main.c +++ b/sway/main.c @@ -16,6 +16,7 @@ #include <sys/prctl.h> #endif #include <wlr/util/log.h> +#include "sway/commands.h" #include "sway/config.h" #include "sway/debug.h" #include "sway/server.h" @@ -410,9 +411,18 @@ int main(int argc, char **argv) { security_sanity_check(); - // TODO: wait for server to be ready - // TODO: consume config->cmd_queue config->active = true; + // Execute commands until there are none left + 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); + } if (!terminate_request) { server_run(&server); |