xorg.conf is deprecated
new config files:
Code:
/etc/X11/xorg.conf.d/10-evdev.conf
/etc/X11/xorg.conf.d/10-monitor.conf
/etc/X11/xorg.conf.d/10-synaptics.conf
evdev.conf stores input informations, like keyboard and mouse
monitor.conf stores infos about video driver and monitor specs
synaptics.conf stores info about synaptics touchpad.
@ thread starter: create 10-monitor.conf (generally it doesn't exist beacuse kernel uses KMS, if I am not wrong) and insert your video drivers / monitor / screen infos.
example of 10-monitor.conf:
Code:
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Device"
Identifier "Device0"
Driver "fglrx" #Choose the driver used for this monitor
EndSection
Section "Screen"
Identifier "Screen0" #Collapse Monitor and Device section to Screen section
Device "Device0"
Monitor "Monitor0"
DefaultDepth 16 #Choose the depth (16||24)
SubSection "Display"
Depth 16
Modes "1024x768" #Choose the resolution
EndSubSection
EndSection
Bookmarks