X Server: Difference between revisions

From Q
Jump to navigation Jump to search
Tgurr (talk | contribs)
No edit summary
Tgurr (talk | contribs)
No edit summary
Line 9: Line 9:
{{Box File|/etc/X11/xorg.conf.d/10-evdev.conf|
{{Box File|/etc/X11/xorg.conf.d/10-evdev.conf|
<pre>
<pre>
#
# Catch-all evdev loader for udev-based systems
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# We don't simply match on any device since that also adds accelerometers
Line 55: Line 54:
<pre>
<pre>
Section "Device"
Section "Device"
    Identifier  "nvidia"
        Identifier  "nvidia"
    Driver      "nvidia"
        Driver      "nvidia"
    Option      "AddARGBGLXVisuals" "true"
        Option      "AddARGBGLXVisuals" "true"
    Option      "AllowGLXWithComposite" "true"
        Option      "AllowGLXWithComposite" "true"
    Option      "RenderAccel" "true"
        Option      "RenderAccel" "true"
EndSection
EndSection
</pre>
</pre>
Line 67: Line 66:
<pre>
<pre>
Section "InputClass"
Section "InputClass"
    Identifier "keyboard-all"
        Identifier "keyboard-all"
    MatchIsKeyboard "on"
        MatchIsKeyboard "on"
    Driver "evdev"
        Driver "evdev"
    Option "XkbLayout" "de"
        Option "XkbLayout" "de"
    Option "XkbVariant" "nodeadkeys"
        Option "XkbVariant" "nodeadkeys"
    Option "XkbOptions" "grp:alt_shift_toggle,compose:rwin,terminate:ctrl_alt_bksp"
        Option "XkbOptions" "grp:alt_shift_toggle,compose:rwin,terminate:ctrl_alt_bksp"
EndSection
EndSection
</pre>
</pre>
}}
}}

Revision as of 15:55, 27 April 2010

X.Org Server 1.7

Releases prior to 1.8 made use of HAL for input device configuration.


X.Org Server 1.8

This release features udev input device management (HAL will be deprecated in the long run), it also adds xorg.conf.d directory support to simplify configuration. You no longer need a /etc/X11/xorg.conf or the previous HAL .fdi files.

Template:Box File

Template:Box File

Template:Box File