понеділок, 21 жовтня 2013 р.

Некоторые настройки Xorg

В последнее время как-то изменился формат конфигурационных файлов Xorg. Точнее, не сам формат, а порядок расположения. Теперь части файла /etc/X11/[org.conf находятся в папке /etc/X/xorg.conf.d:

cat 10-evdev.conf
Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection
cat 20-keyboard.conf 
Section "InputClass"
    Identifier "evdev keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
   
    Option "XkbLayout" "us,ua(winkeys),ru"
    Option "XkbOptions" "grp:ctrl_shift_toggle"
EndSection

cat 10-monitor.conf
Section "Screen"
    Identifier             "Screen0"
    Device                 "Intel GMA3600"              # for AOD270
    Monitor                "Monitor0"
EndSection

Section "Monitor"
    Identifier             "Monitor0"
    DisplaySize            221 130    # In millimeters # for AOD270
EndSection

cat 10-synaptics.conf
Section "InputClass"
        Identifier "touchpad"                            # for AOD270
        MatchIsTouchpad "on"                           # for AOD270
        MatchDevicePath "/dev/input/event*"   # for AOD270
        Driver "synaptics"                                 # for AOD270
        Option "TapButton1" "1"                        # for AOD270
        Option "VertEdgeScroll" "on"                 # for AOD270
EndSection

cat 50-device.conf
Section "Device"
    Identifier             "Intel GMA3600"              # for AOD270
    Driver                 "fbdev"                           # for AOD270
EndSection

Немає коментарів:

Дописати коментар