diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-10-21 09:37:58 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-10-21 09:37:58 -0400 |
commit | a87b60e31e5288c1c3e8c8f94c9a7ccb29e38b54 (patch) | |
tree | e9d1daaa8fc5a2ee1103ec19855b958f47932145 /rootston/main.c | |
parent | 39308cb8688560607cb1d024123d32a7905c6369 (diff) | |
parent | 1782d5e7b7dc5e494cfee72b758d5fa8114aecc8 (diff) |
Merge branch 'master' into feature/data-device-selection
Diffstat (limited to 'rootston/main.c')
-rw-r--r-- | rootston/main.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/rootston/main.c b/rootston/main.c index f262a30f..2a054e6c 100644 --- a/rootston/main.c +++ b/rootston/main.c @@ -1,6 +1,7 @@ #define _POSIX_C_SOURCE 200112L #include <assert.h> #include <stdlib.h> +#include <unistd.h> #include <wayland-server.h> #include <wlr/backend.h> #include <wlr/render.h> @@ -42,6 +43,18 @@ int main(int argc, char **argv) { } setenv("WAYLAND_DISPLAY", socket, true); + + if (server.config->startup_cmd != NULL) { + const char *cmd = server.config->startup_cmd; + pid_t pid = fork(); + if (pid < 0) { + wlr_log(L_ERROR, "cannot execute binding command: fork() failed"); + return 1; + } else if (pid == 0) { + execl("/bin/sh", "/bin/sh", "-c", cmd, (void *)NULL); + } + } + wl_display_run(server.wl_display); wlr_backend_destroy(server.backend); return 0; |