mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
3.8 KiB

  1. Section "Monitor"
  2. Identifier "Monitor1"
  3. # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
  4. # USER MANUAL FOR THE CORRECT NUMBERS !!
  5. # normally uncomment this lines
  6. # HorizSync 24.0 - 80.0
  7. # VertRefresh 50-100
  8. EndSection
  9. Section "Device"
  10. Identifier "Card1"
  11. # Use this for framebuffer devices - should work on most systems.
  12. Driver "fbdev"
  13. Option "fbdev" "/dev/fb/0"
  14. # Some driver accept an UseFBDev option (e.g. radeon) to switch the
  15. # mode via the Linux framebuffer layer. Needed e.g. as workaround for
  16. # iBooks.
  17. # Option "UseFBDev"
  18. EndSection
  19. Section "Screen"
  20. Identifier "Screen1"
  21. Device "Card1"
  22. Monitor "Monitor1"
  23. DefaultDepth 16
  24. Subsection "Display"
  25. Depth 4
  26. Modes "1024x768" "800x600" "640x480"
  27. ViewPort 0 0
  28. EndSubsection
  29. Subsection "Display"
  30. Depth 8
  31. Modes "1024x768" "800x600" "640x400"
  32. ViewPort 0 0
  33. EndSubsection
  34. Subsection "Display"
  35. Depth 16
  36. Modes "1024x768" "800x600" "640x480"
  37. ViewPort 0 0
  38. EndSubsection
  39. Subsection "Display"
  40. Depth 24
  41. Modes "1024x768" "800x600" "640x480"
  42. ViewPort 0 0
  43. EndSubsection
  44. Subsection "Display"
  45. Depth 32
  46. Modes "1024x768" "800x600" "640x480"
  47. ViewPort 0 0
  48. EndSubsection
  49. EndSection
  50. Section "Module"
  51. Load "dbe" # DBE (double buffer extension)
  52. Load "ddc" # Display Data Channel extension
  53. # This loads the miscellaneous extensions module
  54. SubSectionSub "extmod"
  55. Option "omit xfree86-dga" # don't initialise the DGA extension
  56. Option "omit XFree86-VidModeExtension" # disable mode-switching-supoprt
  57. EndSubSection
  58. # This loads the Type1 and FreeType font modules
  59. Load "type1"
  60. Load "freetype"
  61. # Load "glx" # GLX extension (OpenGL visuals)
  62. # Load "dri" # Direct Rendering Interface extension (OpenGL)
  63. # Load "v4l" # Video 4 Linux extension (provides a xv adapter)
  64. EndSection
  65. # this enabled normal users to use DRI - the Direct Rendering Extension.
  66. # it is also possible to use a group to control access.
  67. #
  68. Section "DRI"
  69. Mode 0666
  70. EndSection
  71. Section "Files"
  72. RgbPath "/usr/X11R6/lib/X11/rgb"
  73. FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
  74. FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
  75. FontPath "/usr/X11R6/lib/X11/fonts/CID/"
  76. FontPath "/usr/X11R6/lib/X11/fonts/PEX/"
  77. FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
  78. FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
  79. FontPath "/usr/X11R6/lib/X11/fonts/cyrillic/"
  80. FontPath "/usr/X11R6/lib/X11/fonts/encodings/"
  81. FontPath "/usr/X11R6/lib/X11/fonts/freefont/"
  82. FontPath "/usr/X11R6/lib/X11/fonts/latin2/"
  83. FontPath "/usr/X11R6/lib/X11/fonts/local/"
  84. FontPath "/usr/X11R6/lib/X11/fonts/misc/"
  85. FontPath "/usr/X11R6/lib/X11/fonts/sharefont"
  86. FontPath "/usr/X11R6/lib/X11/fonts/TrueType"
  87. FontPath "/usr/share/ghostscript/fonts/"
  88. EndSection
  89. Section "ServerFlags"
  90. EndSection
  91. Section "InputDevice"
  92. Identifier "Keyboard1"
  93. Driver "keyboard"
  94. Option "AutoRepeat" "250 30"
  95. Option "XkbRules" "xfree86"
  96. Option "XkbModel" "pc105"
  97. EndSection
  98. Section "InputDevice"
  99. Identifier "Mouse1"
  100. Driver "mouse"
  101. Option "Protocol" "Auto"
  102. Option "Device" "/dev/input/mice"
  103. #Option "Emulate3Buttons" "true" # for a two button touch-pad
  104. EndSection
  105. Section "InputDevice"
  106. Identifier "Mouse2"
  107. Driver "mouse"
  108. Option "Protocol" "Auto"
  109. Option "Device" "/dev/misc/psaux"
  110. EndSection
  111. Section "ServerLayout"
  112. Identifier "Simple Layout"
  113. Screen "Screen1"
  114. InputDevice "Mouse1" "CorePointer"
  115. InputDevice "Mouse2" "SendCoreEvents"
  116. InputDevice "Keyboard1" "CoreKeyboard"
  117. EndSection