xserver

xserver with xephyr scale patch
git clone https://git.neptards.moe/u3shit/xserver.git
Log | Files | Refs | README | LICENSE

Xorg.sh.in (279B)


      1 #!/bin/sh
      2 #
      3 # Execute Xorg.wrap if it exists otherwise execute Xorg directly.
      4 # This allows distros to put the suid wrapper in a separate package.
      5 
      6 basedir=@SUID_WRAPPER_DIR@
      7 if [ -x "$basedir"/Xorg.wrap ]; then
      8 	exec "$basedir"/Xorg.wrap "$@"
      9 else
     10 	exec "$basedir"/Xorg "$@"
     11 fi