Advertisement
kijato

Xorg.conf - Matrox G450 Multihead

Jan 10th, 2020
3,237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. Section "Files"
  3.     FontPath    "/usr/share/fonts/X11/misc"
  4.     FontPath    "/usr/X11R6/lib/X11/fonts/misc"
  5.     FontPath    "/usr/share/fonts/X11/100dpi/:unscaled"
  6.     FontPath    "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
  7.     FontPath    "/usr/share/fonts/X11/75dpi/:unscaled"
  8.     FontPath    "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
  9.     FontPath    "/usr/share/fonts/X11/Type1"
  10.     FontPath    "/usr/X11R6/lib/X11/fonts/Type1"
  11.     FontPath    "/usr/share/fonts/X11/100dpi"
  12.     FontPath    "/usr/X11R6/lib/X11/fonts/100dpi"
  13.     FontPath    "/usr/share/fonts/X11/75dpi"
  14.     FontPath    "/usr/X11R6/lib/X11/fonts/75dpi"
  15.     # path to defoma fonts
  16.     FontPath    "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
  17. EndSection
  18.  
  19. Section "Module"
  20.     Load    "bitmap"
  21.     Load    "dbe"
  22.     Load    "ddc"
  23.     Load    "dri"
  24.     Load    "dri2"
  25.     Load    "extmod"
  26.     Load    "freetype"
  27.     Load    "glx"
  28.     Load    "int10"
  29.     Load    "record"
  30.     Load    "vbe"
  31.     Load    "v4l"
  32. EndSection
  33.  
  34. Section "InputDevice"
  35.     Identifier  "Generic Keyboard"
  36.     Driver  "kbd"
  37.     Option  "CoreKeyboard"
  38.     Option  "XkbRules" "xorg"
  39.     Option  "XkbModel" "pc105"
  40.     Option  "XkbLayout" "hu"
  41. EndSection
  42.  
  43. Section "InputDevice"
  44.     Identifier  "Configured Mouse"
  45.     Driver  "mouse"
  46.     Option  "CorePointer"
  47.     Option  "Device" "/dev/psaux"
  48.     Option  "Protocol" "ImPS/2"
  49. EndSection
  50.  
  51. Section "Device"
  52.     Screen  0               # Ezen sor nélkül nem megy!
  53.     Identifier  "MATROX (Primary)"
  54.     VendorName  "Matrox Graphics Inc."
  55.     BoardName   "MGA G400/G450"
  56.     Driver  "mga"
  57.     BusID   "PCI:1:0:0"
  58. EndSection
  59.  
  60. Section "Device"
  61.     Screen  1               # Ezen sor nélkül nem megy!
  62.     Identifier  "MATROX (Secondary)"
  63.     VendorName  "Matrox Graphics Inc."
  64.     BoardName   "Matrox Graphics, Inc. MGA G400/G450"
  65.     Driver  "mga"
  66.     BusID   "PCI:1:0:0"
  67. EndSection
  68.  
  69. Section "Monitor"
  70.     Identifier  "LG"
  71.     VendorName  "LG"
  72.     ModelName   "Studioworks 575E"
  73.     HorizSync   30-70
  74.     VertRefresh 50-120
  75.     Option  "DPMS"
  76.     Option  "CalcAlgorithm" "CheckDesktopGeometry"
  77. EndSection
  78.  
  79. Section "Monitor"
  80.     Identifier  "PHILIPS"
  81.     VendorName  "PHILIPS"
  82.     ModelName   "Brillance 1710"
  83.     HorizSync   30-70
  84.     VertRefresh 50-120
  85.     Option  "DPMS"
  86.     Option  "CalcAlgorithm" "CheckDesktopGeometry"
  87. EndSection
  88.  
  89. Section "Monitor"
  90.     Identifier  "Samsung"
  91.     VendorName  "Samsung"
  92.     ModelName   "SyncMaster 1100p"
  93.     HorizSync   30-115
  94.     VertRefresh 50-160
  95.     Option  "DPMS"
  96.     Option  "CalcAlgorithm" "CheckDesktopGeometry"
  97. EndSection
  98.  
  99. Section "Screen"
  100.     Identifier      "ScreenLeft"
  101.     Device      "MATROX (Primary)"  # + hivatkozz a Screen-re a Device-ban!
  102.     Monitor     "Samsung"
  103.     DefaultDepth    24
  104.     SubSection "Display"
  105.     Depth   8
  106.         Modes   "1600x1200" "1152x864" "1024x768" "800x600"
  107.     EndSubSection
  108.     SubSection "Display"
  109.         Depth   16
  110.         Modes   "1600x1200" "1152x864" "1024x768" "800x600"
  111.     EndSubSection
  112.     SubSection "Display"
  113.     Depth   24
  114.         Modes   "1600x1200" "1152x864" "1024x768" "800x600"
  115.     EndSubSection
  116. EndSection
  117.  
  118. Section "Screen"
  119.     Identifier      "ScreenRight"
  120.     Device      "MATROX (Secondary)"    # + hivatkozz a Screen-re a Device-ban!
  121.     Monitor     "Samsung"
  122.     DefaultDepth    24
  123.     SubSection "Display"
  124.         Depth   8
  125.         Modes   "1600x1200" "1280x1024" "1152x864" "1024x768" "800x600"
  126.     EndSubSection
  127.     SubSection "Display"
  128.         Depth   16
  129.         Modes   "1600x1200" "1280x1024" "1152x864" "1024x768" "800x600"
  130.     EndSubSection
  131.     SubSection "Display"
  132.         Depth   24
  133.         Modes   "1600x1200" "1280x1024" "1152x864" "1024x768" "800x600"
  134.     EndSubSection
  135. EndSection
  136.  
  137. Section "ServerLayout"
  138.     Identifier  "MultiHead Layout"
  139.     Screen  "ScreenLeft"
  140.     Screen  "ScreenRight" RightOf "ScreenLeft"
  141.     InputDevice "Generic Keyboard"
  142.     InputDevice "Configured Mouse"
  143.     Option  "Xinerama" "on"
  144.     Option  "Clone" "off"
  145. EndSection
  146.  
  147. Section "ServerFlags"
  148.     AllowMouseOpenFail
  149.     Option  "DefaultServerLayout" "MultiHead Layout"
  150. EndSection
  151.  
  152. Section "DRI"
  153.     Mode    0666
  154.     Group   "video"
  155. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement