~ken-vandine/unity8/mouse_touchpad_schema

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
<schemalist>
  <enum id="usage-mode-enum">
    <value nick="Staged" value="0" />
    <value nick="Windowed" value="1" />
    <value nick="Automatic" value="2" />
  </enum>

  <enum id="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>
      <summary>The usage mode.</summary>
      <description>The usage mode chosen will affect the Window Management behaviour.</description>
    </key>

    <key enum="primary-button-enum" name="mouse-primary-button">
      <default>"Left"</default>
      <summary>Primary Mouse Button.</summary>
      <description>The primary mouse button.</description>
    </key>

    <key name="mouse-cursor-speed" type="d">
      <default>0.5</default>
      <summary>Mouse cursor speed.</summary>
      <description>Mouse cursor speed.</description>
    </key>

    <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>

    <key name="mouse-scroll-speed" type="d">
      <default>0.5</default>
      <summary>Mouse scroll speed.</summary>
      <description>Mouse scroll speed.</description>
    </key>

    <key enum="primary-button-enum" name="touchpad-primary-button">
      <default>"Left"</default>
      <summary>Primary Touchpad Button.</summary>
      <description>The primary touchpad button.</description>
    </key>

    <key name="touchpad-cursor-speed" type="d">
      <default>0.5</default>
      <summary>Touchpad cursor speed.</summary>
      <description>Touchpad cursor speed.</description>
    </key>

    <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>

    <key name="touchpad-scroll-speed" type="d">
      <default>0.5</default>
      <summary>Touchpad scroll speed.</summary>
      <description>Touchpad scroll speed.</description>
    </key>

    <key name="touchpad-disable-while-typing" type="b">
      <default>false</default>
      <summary>Ignore Touchpad while typing.</summary>
      <description>Disable touchpad while typing.</description>
    </key>

    <key name="touchpad-tap-to-click" type="b">
      <default>false</default>
      <summary>Tap to click.</summary>
      <description>Touchpad tap to click.</description>
    </key>

    <key name="touchpad-two-finger-scroll" type="b">
      <default>false</default>
      <summary>Two finger scrolling.</summary>
      <description>Touchpad two finger scrolling.</description>
    </key>

    <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>

    <key type="y" name="edge-barrier-sensitivity">
      <default>35</default>
      <range min="1" max="100"/>
      <summary>Sensitivity of screen edge barriers for the mouse pointer.</summary>
      <description>Some UI actions like revealing the launcher or the applications spread are triggered by pushing the mouse pointer against a screen edge. This key defines how much you have to push in order to trigger the associated action.</description>
    </key>
    <key type="u" name="edge-barrier-min-push">
      <default>2</default>
      <summary>Minimum push needed to overcome edge barrier</summary>
      <description>How much you have to push  (in grid units)the mouse against an edge barrier when sensibility is 100.</description>
    </key>
    <key type="u" name="edge-barrier-max-push">
      <default>60</default>
      <summary>Maximum push needed to overcome edge barrier</summary>
      <description>How much you have to push (in grid units) the mouse against an edge barrier when sensibility is 1.</description>
    </key>
  </schema>

  <schema path="/com/canonical/unity8/greeter/" id="com.canonical.Unity8.Greeter" gettext-domain="unity8">
    <key type="x" name="locked-out-time">
      <default>0</default>
      <summary>When the greeter was last locked.</summary>
      <description>If too many unsuccessful login attempts have been made in a row, the greeter locks you out for a while.  This unix timestamp indicates when you were locked out, so unity8 knows when to let you back in.</description>
    </key>
  </schema>
</schemalist>