source: x/installing/x-config.xml@ ad16af6

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since ad16af6 was ad16af6, checked in by Bruce Dubbs <bdubbs@…>, 18 years ago

Update typos

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5712 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 3.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="x-config">
9 <?dbhtml filename="xconfig.html"?>
10
11 <sect1info>
12 <othername>$LastChangedBy$</othername>
13 <date>$Date$</date>
14 </sect1info>
15
16 <title>Additional X Window System Configuration</title>
17
18 <para>Below you will find information on fine tuning the components of both
19 variants of <application>X Window System</application>. The documentation
20 links are specifically for <application>XFree86</application>, however, the
21 information contained in those documents usually pertains to
22 <application>Xorg</application> as well.</para>
23
24 <sect2 id='xinput'>
25 <title>Setting up X Input Devices</title>
26
27 <para>This is a new section for BLFS. For now, here are some convenient
28 links for additional configuration of X input devices. Descriptive content
29 will be added soon.</para>
30
31 <sect3 id='xkeyboard'>
32 <title>Keyboards</title>
33
34 <para><ulink url="http://www.xfree86.org/current/XKB-Config.html">The
35 <application>XKB</application> Configuration Guide</ulink></para>
36
37 <para><ulink url="http://www.xfree86.org/current/XKB-Enhancing.html">How
38 to further enhance <application>XKB</application>
39 configuration</ulink></para>
40
41 </sect3>
42
43 <sect3 id='xmice'>
44 <title>Mice</title>
45
46 <para>Multi-button mice can be used to their full potential by mapping
47 the additional buttons to X button events. Wheel mice are a common example.
48 The ordinary ones contain two buttons, and a scroll wheel that doubles as
49 a third button. As far as <application>X</application> is concerned, there
50 are 5 buttons as it counts the 'scroll up' and 'scroll down' functions
51 (internally they are buttons). Here is an example 'InputDevice' section for
52 a typical PS/2 wheel mouse:</para>
53
54<screen><literal>Section "InputDevice"
55 Identifier "Mouse 0"
56 Driver "mouse"
57 Option "Device" "/dev/input/mice"
58 Option "Protocol" "IMPS/2"
59 Option "ZAxisMapping" "4 5"
60 Option "Buttons" "5"
61EndSection</literal></screen>
62
63 <para>Button assignments differ for every mouse type. On more exotic
64 mice, you may find that the rocker wheel buttons are 6 and 7. Simply
65 add those values to the <option>ZAxisMapping</option> option, and set
66 the <option>Buttons</option> option appropriately to enable side to
67 side scrolling. Additional information on button assignment can be
68 found in the following <application>XFree86</application>
69 document:</para>
70
71 <para><ulink url="http://www.xfree86.org/current/mouse.html">Mouse
72 Support in <application>XFree86</application></ulink></para>
73
74 </sect3>
75
76 <sect3 id='xinput-other'>
77 <title>Other</title>
78
79 <para>To be added...</para>
80
81 </sect3>
82
83 </sect2>
84
85 <sect2>
86 <title>Fine Tuning Display Settings</title>
87
88 <sect3>
89 <title>The 'Monitor' Section</title>
90
91 <para>To be added...</para>
92
93 </sect3>
94
95 <sect3>
96 <title>The 'Device' Section</title>
97
98 <para>To be added...</para>
99
100 <para><ulink
101 url="http://www.xfree86.org/current/manindex4.html">Devices</ulink></para>
102
103 </sect3>
104
105 </sect2>
106
107</sect1>
Note: See TracBrowser for help on using the repository browser.