360ba43579
In addition to "always" and "never", gnome-panel supported an "auto" grouping mode, which only started to group items when running out of available space. It makes sense for us to support the same option in the window-list extension, so implement it. https://bugzilla.gnome.org/show_bug.cgi?id=697157
20 lines
753 B
Plaintext
20 lines
753 B
Plaintext
<schemalist gettext-domain="gnome-shell-extensions">
|
|
<enum id="org.gnome.shell.extensions.window-list.GroupingMode">
|
|
<value value="0" nick="never"/>
|
|
<value value="1" nick="auto"/>
|
|
<value value="2" nick="always"/>
|
|
</enum>
|
|
<schema id="org.gnome.shell.extensions.window-list"
|
|
path="/org/gnome/shell/extensions/window-list/">
|
|
<key name="grouping-mode"
|
|
enum="org.gnome.shell.extensions.window-list.GroupingMode">
|
|
<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>
|
|
</schema>
|
|
</schemalist>
|