aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2019-03-04 20:51:48 +0100
committeremersion <contact@emersion.fr>2019-03-04 21:16:00 +0100
commita6711740bcd311e1ee551c83a5dfc46d9344d17e (patch)
treeda5a5f7f0887535715fb292c4de4a83634cbb2e5
parent3f184cf188234083498e0b03435853bbadd01a99 (diff)
Set DISPLAY after initializing Xwayland
This is necessary after https://github.com/swaywm/wlroots/pull/1596
-rw-r--r--sway/server.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/server.c b/sway/server.c
index 0fcd5800..b24cc1dc 100644
--- a/sway/server.c
+++ b/sway/server.c
@@ -184,6 +184,8 @@ bool server_start(struct sway_server *server) {
&server->xwayland_ready);
server->xwayland_ready.notify = handle_xwayland_ready;
+ setenv("DISPLAY", server->xwayland.wlr_xwayland->display_name, true);
+
server->xwayland.xcursor_manager =
wlr_xcursor_manager_create(cursor_theme, cursor_size);
wlr_xcursor_manager_load(server->xwayland.xcursor_manager, 1);