b7f285d733
Provide all licenses used in the project in a LICENSES folder and add SPDX license and copyright information for all files in accordance with the Reuse Software[0] specification. The copyright information is based on the file's git history, using a fairly generous definition of "non-trivial". As of the spec recommendation, the information is generally added as comments in the files themselves, except for - NEWS, README and similar top-level standard files, so that a SPDX code isn't the first thing people encounter - files that don't support comments (json) or where they'd be a bit awkward (.desktop, .service) - anything under po/, to not interfere with translation teams Those are covered by a .reuse/dep5 files, except for image assets, where separate .license files are used (It would be possible to add comments to SVG files, but I don't trust image editors to preserve them). [0] https://reuse.software/ Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/224>
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<!--
|
|
SPDX-FileCopyrightText: 2016 Florian Müllner <fmuellner@gnome.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
-->
|
|
|
|
<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>
|
|
<key name="display-all-workspaces" type="b">
|
|
<default>false</default>
|
|
<summary>Show windows from all workspaces</summary>
|
|
<description>
|
|
Whether to show windows from all workspaces or only the current one.
|
|
</description>
|
|
</key>
|
|
<key name="show-on-all-monitors" type="b">
|
|
<default>false</default>
|
|
<summary>Show the window list on all monitors</summary>
|
|
<description>
|
|
Whether to show the window list on all connected monitors or
|
|
only on the primary one.
|
|
</description>
|
|
</key>
|
|
</schema>
|
|
</schemalist>
|