xorg.conf0XORG73 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #Special base config file used in Puppy Linux.
  2. # **********************************************************************
  3. # Module section -- this section is used to specify
  4. # which dynamically loadable modules to load.
  5. # **********************************************************************
  6. #
  7. Section "Module"
  8. # This loads the DBE extension module.
  9. Load "dbe" # Double buffer extension
  10. # This loads the miscellaneous extensions module, and disables
  11. # initialisation of the XFree86-DGA extension within that module.
  12. SubSection "extmod"
  13. Option "omit xfree86-dga" # don't initialise the DGA extension
  14. EndSubSection
  15. # This loads the font modules
  16. Load "type1"
  17. Load "freetype"
  18. # This loads xtrap extension, used by xrandr
  19. Load "xtrap"
  20. # This loads the GLX module (if present)
  21. Load "glx"
  22. # This loads dri module (if present)
  23. Load "dri"
  24. EndSection
  25. # **********************************************************************
  26. # Files section. This allows default font and rgb paths to be set
  27. # **********************************************************************
  28. Section "Files"
  29. # The location of the RGB database. Note, this is the name of the
  30. # file minus the extension (like ".txt" or ".db"). There is normally
  31. # no need to change the default.
  32. RgbPath "/usr/X11R7/lib/X11/rgb"
  33. # Multiple FontPath entries are allowed (which are concatenated together),
  34. # as well as specifying multiple comma-separated entries in one FontPath
  35. # command (or a combination of both methods)
  36. FontPath "/usr/X11R7/lib/X11/fonts/misc/"
  37. FontPath "/usr/X11R7/lib/X11/fonts/Type1/"
  38. FontPath "/usr/X11R7/lib/X11/fonts/TTF/"
  39. EndSection
  40. # **********************************************************************
  41. # Server flags section.
  42. # **********************************************************************
  43. Section "ServerFlags"
  44. # Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
  45. # (where n is 1 through 12). This allows clients to receive these key
  46. # events.
  47. # Option "DontVTSwitch"
  48. # Enables mode switching with xrandr
  49. # There is a report that this can cause Xorg not to work on some
  50. # video hardware, so default is commented-out...
  51. # but i want to use it in xorgwizard so leave on...
  52. Option "RandR" "on"
  53. EndSection
  54. #everything past here is auto-generated by Puppy's Xorg Wizard...