xorg.conf0 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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). xorg 7.4/5, need explicit disable to disable...
  21. Disable "glx" #LOADGLX
  22. # This loads dri module (if present). 7.4 loads it by default, have to disable...
  23. # Load "dri" #LOADDRI
  24. # Disable "dri"
  25. EndSection
  26. # **********************************************************************
  27. # Files section. This allows default font paths to be set
  28. # **********************************************************************
  29. Section "Files"
  30. # Multiple FontPath entries are allowed (which are concatenated together),
  31. # as well as specifying multiple comma-separated entries in one FontPath
  32. # command (or a combination of both methods)
  33. FontPath "/usr/share/X11/fonts/misc/"
  34. FontPath "/usr/share/X11/fonts/Type1/"
  35. FontPath "/usr/share/X11/fonts/TTF/"
  36. EndSection
  37. # **********************************************************************
  38. # Server flags section.
  39. # **********************************************************************
  40. Section "ServerFlags"
  41. # Uncomment this to disable the <Crtl><Alt><Fn> VT switch sequence
  42. # (where n is 1 through 12). This allows clients to receive these key
  43. # events.
  44. # Option "DontVTSwitch"
  45. # Enables mode switching with xrandr
  46. # There is a report that this can cause Xorg not to work on some
  47. # video hardware, so default is commented-out...
  48. # but i want to use it in xorgwizard so leave on...
  49. Option "RandR" "on"
  50. # With this, Xorg won't talk to HAL to add evdev devices and you'll be back
  51. # with the old Xorg behavior (pre-7.4)...
  52. Option "AutoAddDevices" "false"
  53. # For no-Hal, kirk also suggests this...
  54. # Option "AllowMouseOpenFail" "true"
  55. # Xorg 7.4, Ubuntu Jaunty, CTRL-ALT-BACKSPACE is disabled by default...
  56. Option "DontZap" "false"
  57. EndSection
  58. #everything past here is auto-generated by Puppy's Xorg Wizard...