Advertisement
inukaze

Inukaze - Archlinux "xorg.conf"

May 7th, 2011
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.52 KB | None | 0 0
  1. # Inukaze - ArchLinux Xorg "nForce 630a" - Experimental
  2.  
  3. Section "Module"
  4. Load "ddc" # ddc probing of monitor
  5. Load "dbe"
  6. Load "dri"
  7. Load "extmod"
  8. Load "glx"
  9. Load "bitmap" # bitmap-fonts
  10. Load "type1"
  11. Load "freetype"
  12. Load "record"
  13. Load "synaptics"
  14. # Load "GLcore"
  15. EndSection
  16.  
  17. Section "ServerLayout"
  18. Identifier "Layout0"
  19. Screen 0 "Screen0" 0 0
  20. InputDevice "Keyboard0" "CoreKeyboard"
  21. InputDevice "PS/2 Mouse" "CorePointer"
  22. Option "Xinerama" "0"
  23. Option "AIGLX" "True"
  24. EndSection
  25.  
  26. Section "ServerFlags"
  27. Option "AllowMouseOpenFail" "true"
  28. Option "AutoAddDevices" "False"
  29.  
  30. EndSection
  31.  
  32. Section "Files"
  33. ModulePath "/usr/lib/xorg/modules"
  34. FontPath "/usr/share/fonts/misc:unscaled"
  35. FontPath "/usr/share/fonts/misc"
  36. FontPath "/usr/share/fonts/75dpi:unscaled"
  37. FontPath "/usr/share/fonts/75dpi"
  38. FontPath "/usr/share/fonts/100dpi:unscaled"
  39. FontPath "/usr/share/fonts/100dpi"
  40. FontPath "/usr/share/fonts/PEX"
  41. # Additional fonts: Locale, Gimp, TTF...
  42. FontPath "/usr/share/fonts/cyrillic"
  43. # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
  44. # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
  45. # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
  46. FontPath "/usr/share/fonts/Type1"
  47. FontPath "/usr/share/fonts/ttf/western"
  48. FontPath "/usr/share/fonts/ttf/decoratives"
  49. FontPath "/usr/share/fonts/truetype"
  50. FontPath "/usr/share/fonts/truetype/openoffice"
  51. FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
  52. FontPath "/usr/share/fonts/latex-ttf-fonts"
  53. FontPath "/usr/share/fonts/defoma/CID"
  54. FontPath "/usr/share/fonts/defoma/TrueType"
  55. EndSection
  56.  
  57. Section "InputDevice"
  58. Identifier "Keyboard0"
  59. Driver "keyboard"
  60. Option "CoreKeyboard"
  61. Option "XkbRules" "xorg"
  62. Option "XkbModel" "pc105"
  63. Option "XkbLayout" "es"
  64. Option "XkbVariant" ""
  65. EndSection
  66.  
  67. Section "InputDevice"
  68. Identifier "Serial Mouse"
  69. Driver "mouse"
  70. Option "Protocol" "Microsoft"
  71. Option "Device" "/dev/ttyS0"
  72. Option "Emulate3Buttons" "true"
  73. Option "Emulate3Timeout" "70"
  74. Option "SendCoreEvents" "true"
  75. EndSection
  76.  
  77. Section "InputDevice"
  78. Identifier "PS/2 Mouse"
  79. Driver "mouse"
  80. Option "Protocol" "auto"
  81. Option "ZAxisMapping" "4 5"
  82. Option "Device" "/dev/psaux"
  83. Option "Emulate3Buttons" "true"
  84. Option "Emulate3Timeout" "70"
  85. Option "SendCoreEvents" "true"
  86. EndSection
  87.  
  88. Section "InputDevice"
  89. Identifier "USB Mouse"
  90. Driver "mouse"
  91. Option "Device" "/dev/input/mice"
  92. Option "SendCoreEvents" "true"
  93. Option "Protocol" "IMPS/2"
  94. Option "ZAxisMapping" "4 5"
  95. Option "Buttons" "5"
  96. EndSection
  97.  
  98. Section "Monitor"
  99. Identifier "Monitor0"
  100. VendorName "DELL"
  101. ModelName "DELL D1028L"
  102. # HorizSync 30.0 - 69.0
  103. # VertRefresh 48.0 - 120.0
  104. Option "DPMS"
  105. EndSection
  106.  
  107. Section "Device"
  108. Identifier "Device0"
  109. Driver "nvidia"
  110. VendorName "NVIDIA Corporation"
  111. BoardName "GeForce 7025 / nForce 630a"
  112. Option "NoLogo" "True"
  113. Option "RenderAccel" "True"
  114. Option "HWCursor" "True"
  115. Option "CursorShadow" "True"
  116. Option "TripleBuffer" "True"
  117. Option "AddARGBVisuals" "True"
  118. Option "AddARGBGLXVisuals" "True"
  119. Option "AllowGLXWithComposite" "True"
  120. Option "DPMS" "True"
  121. Option "NvAGP" "3"
  122. Option "RegistryDwords" "PerfLevelSrc=0x3333"
  123. Option "NoPowerConnectorCheck" "True"
  124. Option "UseEdidFreqs" "True"
  125. Option "backingstore" "True"
  126. Option "TripleBuffer" "True"
  127. Option "DPI" "98x101"
  128. Option "XAANoOffscreenPixmaps" "True"
  129. Option "DRI" "True"
  130. EndSection
  131.  
  132. Section "Screen"
  133. Identifier "Screen0"
  134. Device "Device0"
  135. Monitor "Monitor0"
  136. DefaultDepth 24
  137. Option "AddARGBVisuals" "True"
  138. Option "AddARGBGLXVisuals" "True"
  139. Option "TwinView" "0"
  140. Option "TwinViewXineramaInfoOrder" "CRT-0"
  141. Option "metamodes" "1024x768_60 +0+0"
  142. SubSection "Display"
  143. Depth 24
  144. EndSubSection
  145. EndSection
  146.  
  147. Section "Extensions"
  148. Option "Composite" "Enable"
  149. Option "RENDER" "Enable"
  150. EndSection
  151.  
  152. Section "DRI"
  153. Mode 0666
  154. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement