Advertisement
AngelVG

Untitled

Jul 16th, 2018
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. # Chapter 11. Configuring Multiple Display Devices on One X Screen
  2. # http://us.download.nvidia.com/XFree86/FreeBSD-x86_64/340.107/README/configtwinview.html
  3.  
  4. ############################################################################
  5. # Monitor section
  6. ############################################################################
  7.  
  8. Section "Monitor"
  9. Identifier "Monitor0"
  10. VendorName "Dell Corporation"
  11. ModelName "DELL 1907FP"
  12. #HorizSync 30-81 # kHz
  13. #VertRefresh 56-76 # Hz
  14. #Option "DPMS" "true"
  15. EndSection
  16.  
  17. ############################################################################
  18. # Graphics device section(s)
  19. ############################################################################
  20.  
  21. Section "Device"
  22. Identifier "Device0"
  23. VendorName "NVIDIA Corporation"
  24. BoardName "GeForce 8400GS"
  25. Driver "nvidia"
  26. BusID "PCI:2:0:0" # (GPU-0)
  27. #Option "SecondMonitorHorizSync" "30-81" # kHz
  28. #Option "SecondMonitorVertRefresh" "56-76" # Hz
  29. Option "MetaModeOrientation" "RightOf"
  30. # "RightOf" (the default) "LeftOf" "Above" "Below" "SamePositionAs"
  31. Option "MetaModes" "1280x1024,1280x1024; 1024x768,1024x768"
  32. #Option "ConnectedMonitor" "DFP,CRT"
  33. Option "nvidiaXineramaInfoOrder" "DFP"
  34. # Default "CRT, DFP, TV"
  35. EndSection
  36.  
  37. ############################################################################
  38. # Screen sections
  39. ############################################################################
  40.  
  41. Section "Screen"
  42. Identifier "Screen0"
  43. Device "Device0"
  44. Monitor "Monitor0"
  45. Option "SLI" "Off"
  46. Option "MultiGPU" "Off"
  47. Option "BaseMosaic" "Off"
  48. DefaultDepth 24
  49. SubSection "Display"
  50. Depth 24
  51. EndSubSection
  52. EndSection
  53.  
  54. ############################################################################
  55. # ServerLayout sections
  56. ############################################################################
  57.  
  58. Section "ServerLayout"
  59. Identifier "Multiple Display Devices on One X Screen"
  60. Screen 0 "Screen0" 0 0
  61. Option "Xinerama" "0"
  62. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement