Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.41 KB | None | 0 0
  1. Section "ServerLayout"
  2. Identifier "Layout0"
  3. Screen 0 "DisplayLinkScreen" 0 0
  4. Screen 1 "Screen0" RightOf "DisplayLinkScreen"
  5. InputDevice "Keyboard0" "CoreKeyboard"
  6. InputDevice "Mouse0" "CorePointer"
  7. Option "Xinerama" "0" #Could not get this to work it has to be disable
  8. EndSection
  9.  
  10. ##################################################{Files and Modules
  11. Section "Files"
  12. ModulePath "/usr/local/lib/xorg/modules/drivers"
  13. ModulePath "/usr/lib/xorg/modules"
  14. ModulePath "/usr/lib/xorg/modules/drivers"
  15. ModulePath "/usr/local/lib"
  16. EndSection
  17.  
  18. ##################################################}
  19.  
  20. ##################################################{Input Devices
  21. Section "InputDevice"
  22. Identifier "Mouse0"
  23. Driver "mouse"
  24. Option "Protocol" "auto"
  25. Option "Device" "/dev/psaux"
  26. Option "Emulate3Buttons" "no"
  27. Option "ZAxisMapping" "4 5"
  28. EndSection
  29.  
  30. Section "InputDevice"
  31. Identifier "Keyboard0"
  32. Driver "kbd"
  33. EndSection
  34. ##################################################{
  35.  
  36. ##################################################{Default Device
  37. Section "Monitor"
  38. Identifier "Monitor0"
  39. VendorName "Unknown"
  40. ModelName "Unknown"
  41. HorizSync 28.0 - 33.0
  42. VertRefresh 43.0 - 72.0
  43. Option "DPMS"
  44. EndSection
  45. Section "Device"
  46. Identifier "Device0" # use "lspci | grep VGA" to get your Device info
  47. Driver "nvidia"
  48. VendorName "NVIDIA Corporation"
  49. Option "NoLogo" "True"
  50. EndSection
  51. Section "Screen"
  52. Identifier "Screen0"
  53. Device "Device0"
  54. Monitor "Monitor0"
  55. DefaultDepth 24
  56. SubSection "Display"
  57. Depth 24
  58. Modes "1920x1200" "1920x1080" "1680x1050" "1600x1200" "1440x900" "1366x768" "1280x1024" "1280x960" "1280x800" "1280x768" "1152x864" "1024x768" "800x600" "640x480"
  59. EndSubSection
  60. EndSection
  61. ##################################################{
  62.  
  63. ##################################################{DisplayLink
  64. Section "Monitor"
  65. Identifier "DisplayLinkMonitor"
  66. EndSection
  67. Section "Device"
  68. Identifier "DisplayLinkDevice"
  69. Driver "displaylink"
  70. Option "fbdev" "/dev/fb0"
  71. EndSection
  72. Section "Screen"
  73. Identifier "DisplayLinkScreen"
  74. Device "DisplayLinkDevice"
  75. Monitor "DisplayLinkMonitor"
  76. SubSection "Display"
  77. Depth 24
  78. Modes "1920x1200" "1920x1080" "1680x1050" "1600x1200" "1440x900" "1366x768" "1280x1024" "1280x960" "1280x800" "1280x768" "1152x864" "1024x768" "800x600" "640x480"
  79. EndSubSection
  80. EndSection
  81. ##################################################{
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement