diff options
author | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-13 22:56:35 +0100 |
---|---|---|
committer | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-13 22:56:35 +0100 |
commit | 97b5922a75b6f0337c2d3ae4bc62dc18347f861e (patch) | |
tree | 9a11aa45941d35061cefd59e787e93696f5b35c7 /Release/share/glib-2.0/schemas/org.gnome.desktop.app-folders.gschema.xml | |
parent | 78109333d989fa678c3c864defc4ef9d170f58ce (diff) |
Funktionierendes settings GUI
Diffstat (limited to 'Release/share/glib-2.0/schemas/org.gnome.desktop.app-folders.gschema.xml')
-rw-r--r-- | Release/share/glib-2.0/schemas/org.gnome.desktop.app-folders.gschema.xml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Release/share/glib-2.0/schemas/org.gnome.desktop.app-folders.gschema.xml b/Release/share/glib-2.0/schemas/org.gnome.desktop.app-folders.gschema.xml new file mode 100644 index 0000000..9d2664e --- /dev/null +++ b/Release/share/glib-2.0/schemas/org.gnome.desktop.app-folders.gschema.xml @@ -0,0 +1,44 @@ +<schemalist gettext-domain="gsettings-desktop-schemas"> + <schema id="org.gnome.desktop.app-folders" path="/org/gnome/desktop/app-folders/"> + <key name="folder-children" type="as"> + <default>[]</default> + <summary>Folder children</summary> + <description>List of relative settings paths at which app-folders are + stored. Each folder uses the org.gnome.desktop.app-folders.folder + schema.</description> + </key> + </schema> + <schema id="org.gnome.desktop.app-folders.folder"> + <key name="name" type="s"> + <default>''</default> + <summary>Folder name</summary> + <description>The name of the application folder.</description> + </key> + <key name="translate" type="b"> + <default>false</default> + <summary>Translate the name</summary> + <description>Whether the name key is a filename to be looked up in + /usr/share/desktop-directories.</description> + </key> + <key name="apps" type="as"> + <default>[]</default> + <summary>Applications</summary> + <description>The list of IDs of applications that are explicitly + included in this folder.</description> + </key> + <key name="categories" type="as"> + <default>[]</default> + <summary>Categories</summary> + <description>A list of categories for which apps will be placed + into this folder by default, in addition to the apps that are + listed in the apps key.</description> + </key> + <key name="excluded-apps" type="as"> + <default>[]</default> + <summary>Excluded applications</summary> + <description>A list of IDs of applications that are excluded + from this folder. This can be used to remove applications that + would otherwise be included by category.</description> + </key> + </schema> +</schemalist> |