Advertisement
techmik

xorg.conf.mdm

Jul 3rd, 2011
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.67 KB | None | 0 0
  1.  
  2. Section "Files"
  3. RgbPath "/etc/X11/rgb"
  4. ModulePath "/usr/lib/xorg/modules"
  5. FontPath "/usr/share/fonts/X11/misc"
  6. FontPath "/usr/share/fonts/X11/cyrillic"
  7. FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
  8. FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
  9. FontPath "/usr/share/fonts/X11/Type1"
  10. FontPath "/usr/share/fonts/X11/100dpi"
  11. FontPath "/usr/share/fonts/X11/75dpi"
  12. FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  13. EndSection
  14.  
  15. Section "Module"
  16. Load "record"
  17. Load "extmod"
  18. Load "dbe"
  19. Load "GLcore"
  20. Load "glx"
  21. Load "dri"
  22. Load "xtrap"
  23. EndSection
  24.  
  25. Section "ServerFlags"
  26. Option "DontVTSwitch" "yes"
  27. Option "DontZoom" "yes"
  28. Option "DontZap" "yes"
  29. Option "AllowMouseOpenFail" "yes"
  30. # Option "BlankTime" "0"
  31. # Option "StandbyTime" "0"
  32. # Option "SuspendTime" "0"
  33. # Option "OffTime" "0"
  34. EndSection
  35.  
  36. Section "DRI"
  37. Mode 0666
  38. EndSection
  39.  
  40. Section "InputDevice"
  41. Identifier "Keyboard"
  42. Driver "kbd"
  43. Option "CoreKeyboard"
  44. #Option "XkbRules" "evdev"
  45. Option "XkbModel" "evdev"
  46. Option "XkbLayout" "us"
  47. EndSection
  48.  
  49. Section "InputDevice"
  50. Identifier "Mouse"
  51. Driver "mouse"
  52. Option "CorePointer"
  53. Option "Protocol" "auto"
  54. Option "Device" "/dev/input/mice"
  55. Option "ZAxisMapping" "4 5 6 7"
  56. EndSection
  57.  
  58. Section "Device"
  59. Identifier "Video Card 1"
  60. BusID "PCI:2:0:0"
  61. Driver "vesa"
  62. EndSection
  63.  
  64. Section "Monitor"
  65. Identifier "Monitor 1"
  66.  
  67.  
  68. Option "DPMS"
  69. EndSection
  70.  
  71. Section "Screen"
  72. Identifier "Screen 1"
  73. Device "Video Card 1"
  74. Monitor "Monitor 1"
  75. DefaultDepth 24
  76. SubSection "Display"
  77. Depth 16
  78. Modes "1680x1050"
  79.  
  80. EndSubSection
  81. SubSection "Display"
  82. Depth 24
  83. Modes "1680x1050"
  84.  
  85. EndSubSection
  86. EndSection
  87.  
  88. Section "Device"
  89. Identifier "Video Card 2"
  90. BusID "PCI:1:5:0"
  91. Driver "vesa"
  92. EndSection
  93.  
  94. Section "Monitor"
  95. Identifier "Monitor 2"
  96. HorizSync 28-49
  97. VertRefresh 43-72
  98. Option "DPMS"
  99. EndSection
  100.  
  101. Section "Screen"
  102. Identifier "Screen 2"
  103. Device "Video Card 2"
  104. Monitor "Monitor 2"
  105. DefaultDepth 24
  106. SubSection "Display"
  107. Depth 16
  108. Modes "1680x1050"
  109.  
  110. EndSubSection
  111. SubSection "Display"
  112. Depth 24
  113. Modes "1680x1050"
  114.  
  115. EndSubSection
  116. EndSection
  117.  
  118. Section "ServerLayout"
  119. Identifier "X Configured"
  120.  
  121. Screen 0 "Screen 1"
  122. Screen 1 "Screen 2"
  123.  
  124. InputDevice "Keyboard"
  125. InputDevice "Mouse"
  126. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement