summaryrefslogtreecommitdiffstats
path: root/gnome-help/C/mouse-disabletouchpad.page
blob: 8ff6dd6c64f30fc266226d3cb313ceeb1ee443d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<page xmlns="http://projectmallard.org/1.0/"
  type="topic"
  style="task"
  id="mouse-disabletouchpad">
<info>

    <link type="guide" xref="prefs#mouse"/>
    <link type="seealso" xref="mouse-mousekeys"/>
    
    <desc>
    Enable or disable the touchpad.
    </desc>
    
    <revision pkgversion="3.0" version="0.1" date="2011-02-04" status="candidate"/>
    <credit type="author">
        <name>Phil Bull</name>
        <email>philbull@gmail.com</email>
    </credit>
    <copyright>
        <year>2009</year>
        <name>GNOME Documentation Project</name>
    </copyright>
    <license>Creative Commons Share Alike 3.0</license>
    <!-- <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/> -->
</info>

<title>Touchpad</title>
<p>
To enable or disable the touchpad:
</p>

<steps>
 <item>
  <p>
  Press <keyseq><key>Alt</key><key>F2</key></keyseq>.  
  </p>
 </item>
 <item><p>
 Type <input>gconf-editor</input> to bring up the <gui>Configuration Editor</gui> window.
 </p></item>
 <item><p>
  Click <guiseq><gui>/</gui><gui>desktop</gui><gui>gnome</gui><gui>peripherals</gui><gui>touchpad</gui></guiseq>.
  </p>
 </item>
 <item><p>
 Check/uncheck <gui>touchpad_enabled</gui>.
 </p></item>
 <item><p>
 Click <guiseq><gui>File</gui><gui>Quit</gui></guiseq>.
 </p></item>
</steps>

<note style="important">
    <p>
    If the touchpad is your only pointing device and you accidentally disabled it, you can enable it again using just the keyboard:
    </p>
    <steps>
    <item>
    <p>
    Press <keyseq><key>Alt</key><key>F2</key></keyseq>
    </p>
    </item>
    <item>
    <p>
     Type <cmd>gconftool --set /desktop/gnome/peripherals/mouse/touchpad_enabled -t bool True</cmd> 
     </p>
     </item>
     <item>
     <p>
    Press <key>Enter</key>.
    </p>
    </item>
    </steps>
</note>
<comment>
<section id="disable-touchpad">
    <title>Disable the touchpad when a mouse is plugged-in</title>

    <p>
    There is currently no simple way of having your touchpad automatically 
    disabled when a mouse is plugged in.
    </p>
    <code>
    gconftool --set /desktop/gnome/peripherals/mouse/touchpad_enabled -t bool True
    gconftool --set /desktop/gnome/peripherals/mouse/touchpad_enabled -t bool False
    ENV{ID_CLASS}="mouse", ACTION=="add", RUN+="synclient touchpadoff=1"
    ENV{ID_CLASS}="mouse", ACTION=="remove", RUN+="synclient touchpadoff=0"
    </code>
</section>
</comment>

</page>