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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126 | === modified file 'data/com.canonical.Unity8.gschema.xml'
--- data/com.canonical.Unity8.gschema.xml 2015-03-09 12:17:02 +0000
+++ data/com.canonical.Unity8.gschema.xml 2015-08-05 17:10:51 +0000
@@ -5,6 +5,12 @@
<value nick="Automatic" value="2" />
</enum>
+ <enum id="mouse-primary-button-enum">
+ <value nick="Left" value="0" />
+ <value nick="Middle" value="1" />
+ <value nick="Right" value="2" />
+ </enum>
+
<schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
<key enum="usage-mode-enum" name="usage-mode">
<default>"Automatic"</default>
@@ -12,4 +18,109 @@
<description>The usage mode chosen will affect the Window Management behaviour.</description>
</key>
</schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key enum="mouse-primary-button-enum" name="mouse-primary-button">
+ <default>"Left"</default>
+ <summary>Primary Mouse Button.</summary>
+ <description>The primary mouse button.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key enum="primary-button-enum" name="mouse-primary-button">
+ <default>"Left"</default>
+ <summary>Primary Mouse Button.</summary>
+ <description>The primary mouse button.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key name="mouse-cursor-speed" type="f">
+ <default>0.5</default>
+ <summary>Mouse cursor speed.</summary>
+ <description>Mouse cursor speed.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key name="mouse-double-click-speed" type="i">
+ <default>100</default>
+ <summary>Mouse double click speed.</summary>
+ <description>Mouse double click speed in milliseconds.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key name="mouse-scroll-speed" type="f">
+ <default>0.5</default>
+ <summary>Mouse scroll speed.</summary>
+ <description>Mouse scroll speed.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key enum="primary-button-enum" name="touchpad-primary-button">
+ <default>"Left"</default>
+ <summary>Primary Touchpad Button.</summary>
+ <description>The primary touchpad button.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key name="touchpad-cursor-speed" type="f">
+ <default>0.5</default>
+ <summary>Touchpad cursor speed.</summary>
+ <description>Touchpad cursor speed.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key name="touchpad-double-click-speed" type="i">
+ <default>100</default>
+ <summary>Touchpad double click speed.</summary>
+ <description>Touchpad double click speed in milliseconds.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key name="touchpad-scroll-speed" type="f">
+ <default>0.5</default>
+ <summary>Touchpad scroll speed.</summary>
+ <description>Touchpad scroll speed.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key name="touchpad-disable-while-typing" type="b">
+ <default>false</default>
+ <summary>Ignore Touchpad while typing.</summary>
+ <description>Disable touchpad while typing.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key name="touchpad-tap-to-click" type="b">
+ <default>false</default>
+ <summary>Tap to click.</summary>
+ <description>Touchpad tap to click.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key name="touchpad-two-finger-scroll" type="b">
+ <default>false</default>
+ <summary>Two finger scrolling.</summary>
+ <description>Touchpad two finger scrolling.</description>
+ </key>
+ </schema>
+
+ <schema path="/com/canonical/unity8/" id="com.canonical.Unity8" gettext-domain="unity8">
+ <key name="touchpad-disable-with-mouse" type="b">
+ <default>true</default>
+ <summary>Ignore touchpad when a mouse is connected.</summary>
+ <description>Disable touchpad when a mouse is connected.</description>
+ </key>
+ </schema>
+
</schemalist>
|