blob: a9647379fd787ab995f35f29cc62d70cd546f3fe (
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
|
<schemalist gettext-domain="@GETTEXT_PACKAGE@">
<enum id="org.mate.panel.applet.window-list.GroupingType">
<value nick="never" value="0"/>
<value nick="auto" value="1"/>
<value nick="always" value="2"/>
</enum>
<schema id="org.mate.panel.applet.window-list">
<key name="display-all-workspaces" type="b">
<default>false</default>
<_summary>Show windows from all workspaces</_summary>
<_description>If true, the window list will show windows from all workspaces. Otherwise it will only display windows from the current workspace.</_description>
</key>
<key name="group-windows" enum="org.mate.panel.applet.window-list.GroupingType">
<default>'never'</default>
<_summary>When to group windows</_summary>
<_description>Decides when to group windows from the same application on the window list. Possible values are "never", "auto" and "always".</_description>
</key>
<key name="move-unminimized-windows" type="b">
<default>true</default>
<_summary>Move windows to current workspace when unminimized</_summary>
<_description>If true, then when unminimizing a window, move it to the current workspace. Otherwise, switch to the workspace of the window.</_description>
</key>
</schema>
</schemalist>
|