source: x/installing/x-config.xml@ 6c42d4e

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 6c42d4e was 6c42d4e, checked in by Randy McMurchy <randy@…>, 18 years ago

Updated all the wiki links to point to the existing package wiki page if one existed

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

  • Property mode set to 100644
File size: 3.4 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 <para condition="html" role="usernotes">User Notes:
25 <ulink url="&blfs-wiki;/InputMethods"/></para>
26
27 <sect2 id='xinput'>
28 <title>Setting up X Input Devices</title>
29
30 <para>This is a new section for BLFS. For now, here are some convenient
31 links for additional configuration of X input devices. Descriptive content
32 will be added soon.</para>
33
34 <sect3 id='xkeyboard'>
35 <title>Keyboards</title>
36
37 <para><ulink url="http://www.xfree86.org/current/XKB-Config.html">The
38 <application>XKB</application> Configuration Guide</ulink></para>
39
40 <para><ulink url="http://www.xfree86.org/current/XKB-Enhancing.html">How
41 to further enhance <application>XKB</application>
42 configuration</ulink></para>
43
44 </sect3>
45
46 <sect3 id='xmice'>
47 <title>Mice</title>
48
49 <para>Multi-button mice can be used to their full potential by mapping
50 the additional buttons to X button events. Wheel mice are a common example.
51 The ordinary ones contain two buttons, and a scroll wheel that doubles as
52 a third button. As far as <application>X</application> is concerned, there
53 are 5 buttons as it counts the 'scroll up' and 'scroll down' functions
54 (internally they are buttons). Here is an example 'InputDevice' section for
55 a typical PS/2 wheel mouse:</para>
56
57<screen><literal>Section "InputDevice"
58 Identifier "Mouse 0"
59 Driver "mouse"
60 Option "Device" "/dev/input/mice"
61 Option "Protocol" "IMPS/2"
62 Option "ZAxisMapping" "4 5"
63 Option "Buttons" "5"
64EndSection</literal></screen>
65
66 <para>Button assignments differ for every mouse type. On more exotic
67 mice, you may find that the rocker wheel buttons are 6 and 7. Simply
68 add those values to the <option>ZAxisMapping</option> option, and set
69 the <option>Buttons</option> option appropriately to enable side to
70 side scrolling. Additional information on button assignment can be
71 found in the following <application>XFree86</application>
72 document:</para>
73
74 <para><ulink url="http://www.xfree86.org/current/mouse.html">Mouse
75 Support in <application>XFree86</application></ulink></para>
76
77 </sect3>
78
79 <sect3 id='xinput-other'>
80 <title>Other</title>
81
82 <para>To be added...</para>
83
84 </sect3>
85
86 </sect2>
87
88 <sect2>
89 <title>Fine Tuning Display Settings</title>
90
91 <sect3>
92 <title>The 'Monitor' Section</title>
93
94 <para>To be added...</para>
95
96 </sect3>
97
98 <sect3>
99 <title>The 'Device' Section</title>
100
101 <para>To be added...</para>
102
103 <para><ulink
104 url="http://www.xfree86.org/current/manindex4.html">Devices</ulink></para>
105
106 </sect3>
107
108 </sect2>
109
110</sect1>
Note: See TracBrowser for help on using the repository browser.