Archive:Minimal NVidia xorg.conf: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Pashdown
(initial creation)
 
No edit summary
Line 37: Line 37:
           Option "Composite" "Disable"
           Option "Composite" "Disable"
EndSection</pre>
EndSection</pre>
[[Category:nVidia]]

Revision as of 11:44, 7 September 2011

This is a known working NVidia xorg.conf using some recommended settings from the forums.

Section "Module"
    Load           "glx"
EndSection

Section "ServerFlags"
    Option         "Xinerama" "0"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    Option         "NoLogo" "True"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "FlatPanelProperties" "Scaling = Native"
    Option         "SWCursor" "on"
    Option         "HWCursor" "off"
    SubSection     "Display"
        Option         "DynamicTwinView" "false"
        Depth          24
    EndSubSection
EndSection

Section "Extensions"
          Option "Composite" "Disable"
EndSection