mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-26 05:20:05 +01:00
XQuartz: Changed X11.sh to allow use of a ~/.x11run as requested by users of alternate shells
(cherry picked from commitb62ed1f8ea) (cherry picked from commitc3812aec97)
This commit is contained in:
parent
87df8e6819
commit
14d9ccf0ce
1 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
#!/bin/bash --login
|
||||
|
||||
"$(dirname $0)"/X11.bin "${@}"
|
||||
if [ -x ~/.x11run ]; then
|
||||
exec ~/.x11run "$(dirname $0)"/X11.bin "${@}"
|
||||
else
|
||||
exec "$(dirname $0)"/X11.bin "${@}"
|
||||
fi
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue