From ffc9477f9a9a3623d7b7bcddbcd626399dfccfb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix-Antoine=20Fortin?= Date: Tue, 9 May 2023 15:49:29 -0400 Subject: [PATCH] Remove "/usr/bin" prefix in front of dbus-launch in xstartup This allows xstartup to work with environment where dbus-launch is in PATH while not installed in standard /usr/bin. --- jupyter_remote_desktop_proxy/share/xstartup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter_remote_desktop_proxy/share/xstartup b/jupyter_remote_desktop_proxy/share/xstartup index edd060f8..79e83891 100755 --- a/jupyter_remote_desktop_proxy/share/xstartup +++ b/jupyter_remote_desktop_proxy/share/xstartup @@ -1,3 +1,3 @@ #!/bin/sh cd "$HOME" -exec /usr/bin/dbus-launch xfce4-session +exec dbus-launch xfce4-session