Advertisement
Powderking

new xorg.conf to connect TV via composite video to Nvidia ca

Jul 18th, 2011
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. Section "Files"
  2. EndSection
  3.  
  4. Section "InputDevice"
  5. Identifier "Mouse0"
  6. Driver "mouse"
  7. Option "Protocol" "auto"
  8. Option "Device" "/dev/psaux"
  9. Option "Emulate3Buttons" "no"
  10. Option "ZAxisMapping" "4 5"
  11. EndSection
  12.  
  13. Section "InputDevice"
  14. Identifier "Keyboard0"
  15. Driver "kbd"
  16. EndSection
  17.  
  18. Section "Device"
  19. Identifier "device0" # assume this is CRT screen, above
  20. Driver "nvidia"
  21. Option "AddARGBGLXVisuals" "On"
  22. Option "UseDisplayDevice" "TV-0"
  23. Option "AllowGLXWithComposite" "true" # not work without it on NVidia GForgeMX400 for me
  24. Option "ExactModeTimingsDVI" "true"
  25. Option "NoLogo" "true"
  26. BusID "PCI:1:0:0"
  27. Screen 0
  28. EndSection
  29. Section "Device"
  30. Identifier "device1" # assunge this is LCD screen, below
  31. Driver "nvidia"
  32. Option "UseDisplayDevice" "DFP-0"
  33. Option "AddARGBGLXVisuals" "On"
  34. Option "AllowGLXWithComposite" "true" # not work without it on NVidia GForgeMX400 for me
  35. Option "ExactModeTimingsDVI" "true"
  36. Option "NoLogo" "true"
  37. BusId "PCI:1:0:0"
  38. Screen 1
  39. EndSection
  40.  
  41. Section "Monitor"
  42. Identifier "monitor0" # crt
  43. ModelName "TV-0"
  44. Option "DPMS"
  45. EndSection
  46. Section "Monitor"
  47. Identifier "monitor1" # lcd
  48. ModelName "BenQ T90X"
  49. HorizSync 31.0 - 83.0
  50. VertRefresh 56.0 - 76.0
  51. Option "DPMS"
  52. EndSection
  53.  
  54. Section "Screen"
  55. Identifier "screen0" # crt
  56. Device "device0"
  57. Monitor "monitor0"
  58. Option "ConnectedMonitor" "TV-0"
  59. EndSection
  60. Section "Screen"
  61. Identifier "screen1" # lcd
  62. Device "device1"
  63. Monitor "monitor1"
  64. Option "ConnectedMonitor" "DFP-0"
  65. EndSection
  66.  
  67. Section "ServerLayout"
  68. Identifier "Default Layout"
  69. Screen 0 "screen1" 0 0
  70. Screen 1 "screen0" 0 0
  71. InputDevice "Keyboard0" "CoreKeyboard"
  72. InputDevice "Mouse0" "CorePointer"
  73. EndSection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement