You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you're trying to launch a program, DISPLAY is incorrectly getting set to "wayland-0", which is supposed to be for WAYLAND_DISPLAY.
So any X11 programs that get launched would fail to open the X11 display (with Xwayland) and exit.
I'm not sure what the purpose of setting DISPLAY like this is, but it seems like g_app_launch_context_get_display is returning WAYLAND_DISPLAY in a wayland session.
The text was updated successfully, but these errors were encountered:
The current display data->display is the return value of a call to
g_app_launch_context_get_display(), which is $WAYLAND_DISPLAY in a
Wayland session, to which the DISPLAY environment variable must not
be set in a Wayland session.
This closes github issue #40, reported by ascent12.
When you're trying to launch a program, DISPLAY is incorrectly getting set to "wayland-0", which is supposed to be for WAYLAND_DISPLAY.
So any X11 programs that get launched would fail to open the X11 display (with Xwayland) and exit.
The offending lines would be:
libfm/src/base/fm-action.c
Lines 734 to 736 in 9ce974e
libfm/src/base/fm-action.c
Line 671 in 9ce974e
I'm not sure what the purpose of setting DISPLAY like this is, but it seems like
g_app_launch_context_get_display
is returning WAYLAND_DISPLAY in a wayland session.The text was updated successfully, but these errors were encountered: