From e00badc44a6fd3f69eafa9975362e66ccaa53c56 Mon Sep 17 00:00:00 2001 From: svsp Date: Sun, 1 Feb 2026 06:46:22 +0500 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=B8=D0=BC=D0=B5=D1=80=D0=BE?= =?UTF-8?q?=D0=B2=20=D0=BA=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- configExamples/README.md | 43 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 configExamples/README.md 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 + +```