~3v1n0/unity/scale-close-middle-click

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
<schemalist>
  <enum id="form-factor-enum">
    <value nick="Automatic" value="0" />
    <value nick="Desktop" value="1" />
    <value nick="Netbook" value="2" />
    <value nick="TV" value="3" />
  </enum>
  <enum id="home-expanded-enum">
    <value nick="Not Expanded" value="0" />
    <value nick="Expanded" value="1" />
  </enum>

  <schema path="/com/canonical/unity/" id="com.canonical.Unity" gettext-domain="unity">
    <key enum="form-factor-enum" name="form-factor">
      <default>"Automatic"</default>
      <summary>The form factor Unity should target.</summary>
      <description>The form factor chosen will affect the size and appearance of the Dash, Launcher and also the Window Management behaviour.</description>
    </key>
    <key enum="home-expanded-enum" name="home-expanded">
      <default>"Expanded"</default>
      <summary>Whether the home screen should be expanded.</summary>
      <description>Whether the home screen should be expanded.</description>
    </key>
    <key type="i" name="minimize-count">
      <default>0</default>
      <summary>Number of times a normal window has been minimized.</summary>
      <description>This is used to adjust the animation speed by making it progressively faster the more it is used.</description>
    </key>
    <key type="i" name="minimize-fast-duration">
      <default>300</default>
      <summary>The duration for the minimize animation when it is at its fastest setting.</summary>
      <description>This is the duration that the minimize animation will have when it has been used more than an number of times equal minimize-speed-threshold.</description>
    </key>
    <key type="i" name="minimize-slow-duration">
      <default>800</default>
      <summary>The duration for the minimize animation when it is at its slowest setting.</summary>
      <description>This is the duration that the minimize animation will have when it has never been used.</description>
    </key>
    <key type="i" name="minimize-speed-threshold">
      <default>100</default>
      <summary>The number of minimizations required to reach maximum speed.</summary>
      <description>The speed of the minimize animation will progressively get faster as minimize-count approaches this value.</description>
    </key>
  </schema>
  <schema path="/com/canonical/unity/launcher/" id="com.canonical.Unity.Launcher" gettext-domain="unity">
    <key type="as" name="favorites">
      <default>[ 'application://ubiquity-gtkui.desktop', 'application://nautilus-home.desktop', 'application://firefox.desktop', 'application://libreoffice-writer.desktop', 'application://libreoffice-calc.desktop', 'application://libreoffice-impress.desktop', 'application://ubuntu-software-center.desktop', 'application://ubuntuone-installer.desktop', 'application://ubuntu-amazon-default.desktop', 'application://UbuntuOneMusiconeubuntucom.desktop', 'application://gnome-control-center.desktop', 'unity://running-apps', 'unity://expo-icon', 'unity://devices' ]</default>
      <summary>List of items that should be shown by default in the launcher</summary>
      <description>These items can be application://desktop-id.desktop, device://uiid and unity://special-id (including unity://running-apps that specifies the position of the ran applications, unity://devices the position of the attached devices, unity://expo-icon the position of the workspace switcher and unity://show-desktop-icon the position of the show-desktop icon); the order of this list determines the launcher items position.</description>
    </key>
    <key type="s" name="favorite-migration">
      <default>''</default>
      <summary>Version of last migration done</summary>
      <description>This is a detection key for the favorite migration script to know whether the needed migration is done or not.</description>
    </key>
  </schema>
  <schema path="/com/canonical/unity/panel/" id="com.canonical.Unity.Panel" gettext-domain="unity">
    <key type="as" name="systray-whitelist">
      <default>[ 'JavaEmbeddedFrame', 'Wine', 'Update-notifier' ]</default>
      <summary>List of client names, resource classes or wm classes to allow in the Panel's systray implementation.</summary>
      <description>"" (empty) will not allow any tray icons, "all" will allow all tray icons, otherwise there will be an attempt to match each icon to a value here.</description>
    </key>
  </schema>
  <schema path="/com/canonical/unity/devices/" id="com.canonical.Unity.Devices" gettext-domain="unity">
    <key type="as" name="blacklist">
        <default>[]</default>
        <summary>List of device uuid blacklist from the launcher.</summary>
        <description>These devices are not shown in the launcher by default.</description>
    </key>
  </schema>
  <schema path="/com/canonical/unity/dash/" id="com.canonical.Unity.Dash" gettext-domain="unity">
    <key type="as" name="home-lens-ordering">
      <default>[ 'applications.lens', 'files.lens', 'music.lens' ]</default>
      <summary>List of lens ids specifying how lenses should be ordered in the Dash home screen.</summary>
      <description>The categories listed on the Dash home screen will be ordered according to this list. Lenses not appearing in this list will not have any particular ordering and will always sort after lenses specified in this list.</description>
    </key>
  </schema>
</schemalist>