diff options
author | emersion <[email protected]> | 2018-07-04 09:21:10 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2018-07-04 09:21:10 +0100 |
commit | 39534a1a614e911d4725a37b35208e4f347b6564 (patch) | |
tree | 55272d0cb9f32a18b671b049336841024c10c0fa /sway/main.c | |
parent | 8cc26130a66f533a5cbb8e4833a536dd8798f833 (diff) | |
parent | c092f1fe6a742bc79015efe6e485c35f49cbf473 (diff) |
Merge pull request #2201 from martinetd/setenv-wl-display
startup: move setenv WAYLAND_DISPLAY before config execs
Diffstat (limited to 'sway/main.c')
-rw-r--r-- | sway/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/main.c b/sway/main.c index 124f9fbb..8b0b8612 100644 --- a/sway/main.c +++ b/sway/main.c @@ -416,6 +416,7 @@ int main(int argc, char **argv) { security_sanity_check(); config->active = true; + setenv("WAYLAND_DISPLAY", server.socket, true); // Execute commands until there are none left while (config->cmd_queue->length) { char *line = config->cmd_queue->items[0]; |