1011 B

Конфиг для 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