root/config/xorg.conf.X60

Revision 329, 2.6 KB (checked in by jcmandel, 3 years ago)
Line 
1# xorg.conf (xorg X Window System server configuration file)
2#
3# This file was generated by dexconf, the Debian X Configuration tool, using
4# values from the debconf database.
5#
6# Edit this file with caution, and see the xorg.conf manual page.
7# (Type "man xorg.conf" at the shell prompt.)
8#
9# This file is automatically updated on xserver-xorg package upgrades *only*
10# if it has not been modified since the last upgrade of the xserver-xorg
11# package.
12#
13# If you have edited this file but would like it to be automatically updated
14# again, run the following command:
15#   sudo dpkg-reconfigure -phigh xserver-xorg
16
17Section "Files"
18EndSection
19
20Section "InputDevice"
21        Identifier      "Generic Keyboard"
22        Driver          "kbd"
23        Option          "CoreKeyboard"
24        Option          "XkbRules"      "xorg"
25        Option          "XkbModel"      "pc105"
26        Option          "XkbLayout"     "us"
27EndSection
28
29Section "InputDevice"
30        Identifier      "Configured Mouse"
31        Driver          "mouse"
32        Option          "CorePointer"
33        Option          "Device"                "/dev/input/mice"
34        Option          "Protocol"              "ImPS/2"
35        Option          "ZAxisMapping"          "4 5"
36        Option          "Emulate3Buttons"       "true"
37EndSection
38
39Section "InputDevice"
40        Identifier      "Synaptics Touchpad"
41        Driver          "synaptics"
42        Option          "SendCoreEvents"        "true"
43        Option          "Device"                "/dev/psaux"
44        Option          "Protocol"              "auto-dev"
45        Option          "HorizScrollDelta"      "0"
46EndSection
47
48Section "InputDevice"
49        Driver          "wacom"
50        Identifier      "stylus"
51        Option          "Device"        "/dev/input/wacom"
52        Option          "Type"          "stylus"
53        Option          "ForceDevice"   "ISDV4"         # Tablet PC ONLY
54EndSection
55
56Section "InputDevice"
57        Driver          "wacom"
58        Identifier      "eraser"
59        Option          "Device"        "/dev/input/wacom"
60        Option          "Type"          "eraser"
61        Option          "ForceDevice"   "ISDV4"         # Tablet PC ONLY
62EndSection
63
64Section "InputDevice"
65        Driver          "wacom"
66        Identifier      "cursor"
67        Option          "Device"        "/dev/input/wacom"
68        Option          "Type"          "cursor"
69        Option          "ForceDevice"   "ISDV4"         # Tablet PC ONLY
70EndSection
71
72Section "Device"
73        Identifier      "Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
74        Driver          "intel"
75        BusID           "PCI:0:2:0"
76        Option          "NoDRI"
77EndSection
78
79Section "Monitor"
80        Identifier      "Generic Monitor"
81        Option          "DPMS"
82        HorizSync       30-70
83        VertRefresh     50-160
84EndSection
85
86Section "Screen"
87        Identifier      "Default Screen"
88        Device          "Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
89        Monitor         "Generic Monitor"
90        DefaultDepth    24
91EndSection
92
93Section "ServerLayout"
94        Identifier      "Default Layout"
95        Screen          "Default Screen"
96        InputDevice     "Generic Keyboard"
97        InputDevice     "Configured Mouse"
98        InputDevice     "stylus"        "SendCoreEvents"
99        InputDevice     "cursor"        "SendCoreEvents"
100        InputDevice     "eraser"        "SendCoreEvents"
101        InputDevice     "Synaptics Touchpad"
102EndSection
Note: See TracBrowser for help on using the browser.