diff options
author | Stefano Karapetsas <[email protected]> | 2013-03-22 14:08:12 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-03-22 14:08:12 +0100 |
commit | 9384398bdd679647ca362a72f20c63e5d056f309 (patch) | |
tree | 0c269e6c66b5fab148514a3071d61d6f4d131bfa /data | |
parent | 017c93b447c419843cbd4f0e105ad0604efe90c6 (diff) | |
download | mate-settings-daemon-9384398bdd679647ca362a72f20c63e5d056f309.tar.bz2 mate-settings-daemon-9384398bdd679647ca362a72f20c63e5d056f309.tar.xz |
Add MPRIS plugin
Diffstat (limited to 'data')
-rw-r--r-- | data/Makefile.am | 1 | ||||
-rw-r--r-- | data/org.mate.SettingsDaemon.plugins.mpris.gschema.xml.in | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 4ae81d4..c532027 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -14,6 +14,7 @@ gsettings_SCHEMAS = \ org.mate.SettingsDaemon.plugins.keybindings.gschema.xml \ org.mate.SettingsDaemon.plugins.keyboard.gschema.xml \ org.mate.SettingsDaemon.plugins.media-keys.gschema.xml \ + org.mate.SettingsDaemon.plugins.mpris.gschema.xml \ org.mate.SettingsDaemon.plugins.mouse.gschema.xml \ org.mate.SettingsDaemon.plugins.smartcard.gschema.xml \ org.mate.SettingsDaemon.plugins.sound.gschema.xml \ diff --git a/data/org.mate.SettingsDaemon.plugins.mpris.gschema.xml.in b/data/org.mate.SettingsDaemon.plugins.mpris.gschema.xml.in new file mode 100644 index 0000000..f398d27 --- /dev/null +++ b/data/org.mate.SettingsDaemon.plugins.mpris.gschema.xml.in @@ -0,0 +1,14 @@ +<schemalist> + <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.SettingsDaemon.plugins.mpris" path="/org/mate/settings-daemon/plugins/mpris/"> + <key name="active" type="b"> + <default>true</default> + <_summary>Activation of this plugin</_summary> + <_description>Whether this plugin would be activated by mate-settings-daemon or not</_description> + </key> + <key name="priority" type="i"> + <default>99</default> + <_summary>Priority to use for this plugin</_summary> + <_description>Priority to use for this plugin in mate-settings-daemon startup queue</_description> + </key> + </schema> +</schemalist> |