Dear mantainer,
this line of the startx script wrongly sets the $userclientrc variable
instead of the $userserverrc variable if the file specified in the
$XSERVERRC variable exists:
[ -f "${XSERVERRC}" ] && userclientrc="${XSERVERRC}"
Patch:
--- /usr/bin/startx 2024-10-31 13:41:58.794473583 -0300
+++ /usr/bin/startx.new 2024-10-31 13:42:06.206454416 -0300
@@ -18,7 +18,7 @@
sysclientrc=/etc/X11/xinit/xinitrc
userserverrc=$HOME/.xserverrc
-[ -f "${XSERVERRC}" ] && userclientrc="${XSERVERRC}"
+[ -f "${XSERVERRC}" ] && userserverrc="${XSERVERRC}"
sysserverrc=/etc/X11/xinit/xserverrc
defaultclient=/usr/bin/xterm
defaultserver=/usr/bin/X
Thanks,