diff --git a/configExamples/README.md b/configExamples/README.md new file mode 100644 index 0000000..3527b54 --- /dev/null +++ b/configExamples/README.md @@ -0,0 +1,43 @@ + +# Конфиг для xserver + +``` +Section "Device" + Identifier "Device0" + Driver "nvidia" + VendorName "NVIDIA" +EndSection + +Section "Screen" + Identifier "Screen0" + Device "Device)" + Monitor "Monitor0" + DefaultDepth 24 + SubSection "Display" + Depth 24 + Modes "1280x800" # Стандартное разрешение для ноутбуков того поколения + EndSubSection +EndSection + +Section "Monitor" + Identifier "Monitor0" + VendorName "Generic" + ModelName "LCD" + #Option "DPMS" # Включаем управление питанием монитора +EndSection + +Section "ServerLayout" + Identifier "Layout0" + Screen "Screen0" +EndSection + +Section "InputDevice" + Identifier "Mouse0" + Driver "mouse" + Option "Protocol" "auto" + Option "Device" "/dev/sysmouse" + Option "ZAxisMapping" "4 5" + Option "Buttons" "5" +EndSection + +```