diff options
author | Jonas Ådahl <jadahl@gmail.com> | 2017-02-24 17:48:19 +0800 |
---|---|---|
committer | Jonas Ådahl <jadahl@gmail.com> | 2017-04-07 22:30:48 +0800 |
commit | 094e0356e854c7525c991bdd580b8c5d1b532e0c (patch) | |
tree | e60d87de0be7758e382e61cf09c21600fbc5874a /data | |
parent | 63450d69d38faee9aa2b6e7e419ee10a9d6d6d4b (diff) | |
download | mutter-094e0356e854c7525c991bdd580b8c5d1b532e0c.tar.gz |
backend: Add 'experimental-features' gsetting
This gsetting will allow the adding of keywords to a array, where each
keyword may enable an experimental feauter, if the given mutter version
supports that particular experimental feature. Emphasis is put on the
lack of guarantee that any such keyword has any effect. Currently no
keywords are defined.
https://bugzilla.gnome.org/show_bug.cgi?id=777732
Diffstat (limited to 'data')
-rw-r--r-- | data/org.gnome.mutter.gschema.xml.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/data/org.gnome.mutter.gschema.xml.in b/data/org.gnome.mutter.gschema.xml.in index a96af4a9c..56f16cb48 100644 --- a/data/org.gnome.mutter.gschema.xml.in +++ b/data/org.gnome.mutter.gschema.xml.in @@ -102,6 +102,20 @@ </description> </key> + <key name="experimental-features" type="as"> + <default>[]</default> + <summary>Enable experimental features</summary> + <description> + To enable experimental features, add the feature keyword to the list. + Whether the feature requires restarting the compositor depends on the + given feature. Any experimental feature is not required to still be + available, or configurable. Don't expect adding anything in this + setting to be future proof. + + Currently possible keywords: (none) + </description> + </key> + <child name="keybindings" schema="org.gnome.mutter.keybindings"/> </schema> |