Hello.
I have to generate a X11 config file because the dpi choosen/calculated by the nvidia driver was inadequate.
I generate /etc/X11/xorg.conf from nvidia-settings tool. After modifying it by adding dpi value, may I keep the file in its location (/etc/X11/xorg.conf) or may I break it in multi parts in /etc/X11/xorg.conf.d/50-device.conf, /etc/X11/xorg.conf.d/50-monitor.conf, /etc/X11/xorg.conf.d/50-screen.conf.
Where to put the rest of stuff :
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
Option "Xinerama" "0"
EndSection
Section "Files"
EndSection
Section "InputDevice"
# generated from data in "/etc/sysconfig/mouse"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "yes"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection
Any help is welcome.