home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume10 / sun.serpatch / part01 / X.sample < prev   
Encoding:
Text File  |  1990-10-25  |  286 b   |  10 lines

  1. #!/bin/sh
  2. # If your /usr/bin/X11 directory is shared by both 8-bit colour systems
  3. # and 24-bit colour systems, install the 24-bit server as /usr/bin/X11/Xsun24
  4. # and use this shell script as /usr/bin/X11/X
  5. if [ `constype` = rop -o `constype` = bw4 ]; then
  6.   Xsun24 $@
  7. else
  8.   Xsun $@
  9. fi
  10.