Created
December 5, 2013 10:11
-
-
Save jrockway/7803009 to your computer and use it in GitHub Desktop.
xorg.conf for a custom EDID for my TV, making my card not send null audio over the DVI link. See also: http://analogbit.com/hdmi_dvi_audio
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Section "ServerLayout" | |
Identifier "Layout0" | |
Screen 0 "Screen0" 0 0 | |
Screen 1 "Screen1" RightOf "Screen0" | |
InputDevice "Keyboard0" "CoreKeyboard" | |
InputDevice "Mouse0" "CorePointer" | |
Option "Xinerama" "0" | |
EndSection | |
Section "Files" | |
EndSection | |
Section "InputDevice" | |
# generated from default | |
Identifier "Mouse0" | |
Driver "mouse" | |
Option "Protocol" "auto" | |
Option "Device" "/dev/psaux" | |
Option "Emulate3Buttons" "no" | |
Option "ZAxisMapping" "4 5" | |
EndSection | |
Section "InputDevice" | |
# generated from default | |
Identifier "Keyboard0" | |
Driver "kbd" | |
EndSection | |
Section "Monitor" | |
Identifier "Monitor0" | |
VendorName "Unknown" | |
ModelName "DELL 2405FPW" | |
HorizSync 30.0 - 81.0 | |
VertRefresh 56.0 - 76.0 | |
Option "DPMS" | |
EndSection | |
Section "Monitor" | |
Identifier "Monitor1" | |
VendorName "Unknown" | |
ModelName "Dell W3707C" | |
HorizSync 31.0 - 64.0 | |
VertRefresh 48.0 - 75.0 | |
EndSection | |
Section "Device" | |
Identifier "Device0" | |
Driver "nvidia" | |
VendorName "NVIDIA Corporation" | |
BoardName "GeForce 9800 GT" | |
BusID "PCI:6:0:0" | |
Screen 0 | |
EndSection | |
Section "Device" | |
Identifier "Device1" | |
Driver "nvidia" | |
VendorName "NVIDIA Corporation" | |
BoardName "GeForce 9800 GT" | |
BusID "PCI:6:0:0" | |
Screen 1 | |
Option "CustomEDID" "DFP-1:/etc/X11/tv-edid-as-dvi.bin" | |
EndSection | |
Section "Screen" | |
# Removed Option "metamodes" "DFP-0: nvidia-auto-select +1440+0, DFP-1: nvidia-auto-select +0+300" | |
# Removed Option "metamodes" "nvidia-auto-select +0+0" | |
Identifier "Screen0" | |
Device "Device0" | |
Monitor "Monitor0" | |
DefaultDepth 24 | |
Option "Stereo" "0" | |
Option "nvidiaXineramaInfoOrder" "DFP-0" | |
Option "metamodes" "DFP-0: nvidia-auto-select +0+0; DFP-0: 1680x1050 +0+0; DFP-0: 1600x1200 +0+0; DFP-0: 1280x1024 +0+0; DFP-0: 1280x1024_60 +0+0; DFP-0: 1152x864 +0+0; DFP-0: 1024x768 +0+0; DFP-0: 1024x768_60 +0+0; DFP-0: 800x600 +0+0; DFP-0: 800x600_60 +0+0; DFP-0: 640x480 +0+0; DFP-0: 640x480_60 +0+0; DFP-0: nvidia-auto-select +0+0 {viewportout=1920x1080+0+60}; DFP-0: nvidia-auto-select +0+0 {viewportin=1440x900}; DFP-0: nvidia-auto-select +0+0 {viewportin=1366x768, viewportout=1920x1079+0+60}; DFP-0: nvidia-auto-select +0+0 {viewportin=1280x800}; DFP-0: nvidia-auto-select +0+0 {viewportin=1280x720, viewportout=1920x1080+0+60}" | |
SubSection "Display" | |
Depth 24 | |
EndSubSection | |
EndSection | |
Section "Screen" | |
Identifier "Screen1" | |
Device "Device1" | |
Monitor "Monitor1" | |
DefaultDepth 24 | |
Option "Stereo" "0" | |
Option "metamodes" "DFP-1: nvidia-auto-select +0+0" | |
SubSection "Display" | |
Depth 24 | |
EndSubSection | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment