X Server: Difference between revisions

From Q
Jump to navigation Jump to search
Tgurr (talk | contribs)
Created page with '== 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 wil...'
 
Tgurr (talk | contribs)
No edit summary
Line 8: Line 8:


{{Box File|/etc/X11/xorg.conf.d/10-evdev.conf|
{{Box File|/etc/X11/xorg.conf.d/10-evdev.conf|
<pre>
#
#
# Catch-all evdev loader for udev-based systems
# Catch-all evdev loader for udev-based systems
Line 48: Line 49:
         Driver "evdev"
         Driver "evdev"
EndSection
EndSection
</pre>
}}
}}


{{Box File|/etc/X11/xorg.conf.d/50-nvidia.conf|
{{Box File|/etc/X11/xorg.conf.d/50-nvidia.conf|
<pre>
Section "Device"
Section "Device"
     Identifier  "nvidia"
     Identifier  "nvidia"
Line 58: Line 61:
     Option      "RenderAccel" "true"
     Option      "RenderAccel" "true"
EndSection
EndSection
</pre>
}}
}}


{{Box File|/etc/X11/xorg.conf.d/97-evdev.conf|
{{Box File|/etc/X11/xorg.conf.d/97-evdev.conf|
<pre>
Section "InputClass"
Section "InputClass"
     Identifier "keyboard-all"
     Identifier "keyboard-all"
Line 69: Line 74:
     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>
}}
}}

Revision as of 15:54, 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