Advertisement
Guest User

etc_X11_xorg.conf

a guest
Feb 27th, 2018
1,329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.13 KB | None | 0 0
  1. ##########################################################################
  2. # Configuration files for Xorg X server                                  #
  3. ##########################################################################
  4. Section "ServerLayout"
  5.     Identifier  "X.org Configured"
  6.     Screen      "Default Screen"
  7.     InputDevice "MS WMO" "CorePointer"
  8.     InputDevice "BTC5199" "CoreKeyboard"
  9. EndSection
  10. ##########################################################################
  11. # Files                                                                  #
  12. ##########################################################################
  13. Section "Files"
  14.     ModulePath  "/usr/lib/xorg/modules"
  15.     FontPath    "/usr/share/fonts/X11/misc"
  16.     FontPath    "/usr/share/fonts/X11/cyrillic"
  17.     FontPath    "/usr/share/fonts/X11/100dpi/:unscaled"
  18.     FontPath    "/usr/share/fonts/X11/75dpi/:unscaled"
  19.     FontPath    "/usr/share/fonts/X11/Type1"
  20.     FontPath    "/usr/share/fonts/X11/100dpi"
  21.     FontPath    "/usr/share/fonts/X11/75dpi"
  22.     FontPath    "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  23.     FontPath    "built-ins"
  24. EndSection
  25. ##########################################################################
  26. # Modules                                                                #
  27. ##########################################################################
  28. Section "Module"
  29.     Load        "dri2"
  30.     Load        "record"
  31.     Load        "glx"
  32.     Load        "extmod"
  33.     Load        "dbe"
  34.     Load        "dri"
  35. EndSection
  36. ##########################################################################
  37. # Keyboard BTC Model: 5199                                               #
  38. ##########################################################################
  39. Section "InputDevice"
  40.     Identifier  "BTC5199"
  41.     Driver      "kbd"
  42. EndSection
  43. ##########################################################################
  44. # Mouse Microsoft Wheel Mouse Optical 1.1A USB and PS/2 Compatible       #
  45. ##########################################################################
  46. Section "InputDevice"
  47.     Identifier  "MS WMO"
  48.     Driver      "mouse"
  49.     Option      "Protocol" "auto"
  50.     Option      "Device" "/dev/input/mice"
  51.     Option      "ZAxisMapping" "4 5 6 7"
  52. EndSection
  53. ##########################################################################
  54. # GPU ATI Radeon 7000 (RV100)                                            #
  55. ##########################################################################
  56. Section "Device"
  57.     Identifier  "Radeon 7000"
  58.     Driver      "radeon"
  59.     BusID       "PCI:1:0:0"
  60.     Option      "XAANoOffscreenPixmaps"
  61.     Option      "monitor-DVI-1" "NEC LCD170V"
  62.     Option      "monitor-DVI-0" "NONE"
  63.     Option      "AGPMode" "4"
  64.     Option      "EnablePageFlip" "on"
  65.     Option      "AccelMethod" "EXA"
  66.     Option      "RenderAccel" "on"
  67.     Option      "SWcursor" "off"
  68.     Option      "EXAVSync" "off"
  69.     Option      "EXAPixmaps" "on"
  70.     Option      "AccelDFS" "on"
  71.     Option      "ColorTiling" "on"
  72. EndSection
  73. ##########################################################################
  74. # NEC LCD170V                                                            #
  75. ##########################################################################
  76. Section "Monitor"
  77.     Identifier  "NEC LCD170V"
  78.     Option      "DPMS"
  79.     Option      "PreferredMode" "1280x1024"
  80.     Option      "Position" "0 0"
  81.     Option      "Enable" "true"
  82. EndSection
  83. ##########################################################################
  84. # For the future                                                         #
  85. ##########################################################################
  86. Section "Monitor"
  87.     Identifier  "NONE"
  88.     Option      "DPMS"
  89.     Option      "PreferredMode" "1280x1024"
  90.     Option      "RightOf" "monitor1"
  91.     Option      "Enable" "true"
  92. EndSection
  93. ##########################################################################
  94. # Screen                                                                 #
  95. ##########################################################################
  96. Section "Screen"
  97.     Identifier  "Default Screen"
  98.     Device      "Radeon 7000"
  99.     Monitor     "NEC LCD170V"
  100.     DefaultDepth 24
  101.     SubSection "Display"
  102.         Depth   24
  103.         Modes   "800x600" "1024x768" "1280x1024"
  104.         Virtual 1280 1024
  105.     EndSubSection
  106. EndSection
  107. ##########################################################################
  108. # DRI                                                                    #
  109. ##########################################################################
  110. Section "DRI"
  111.     Group       "video"
  112.     Mode        0666
  113. EndSection
  114. ##########################################################################
  115. # Extensions                                                             #
  116. ##########################################################################
  117. Section "Extensions"
  118.     Option "Composite" "Enable"
  119. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement