diff options
author | rbuj <[email protected]> | 2019-06-10 23:37:27 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-06-12 17:20:40 +0200 |
commit | 248b23eef7cb2a9862401c3c25c5414655812985 (patch) | |
tree | 73287d7fffe96824f61b54075f3591b13179ca3c /schemas | |
parent | 967ea267f537dfeb9a3e8eb8169899ac199e50d9 (diff) | |
download | mate-desktop-248b23eef7cb2a9862401c3c25c5414655812985.tar.bz2 mate-desktop-248b23eef7cb2a9862401c3c25c5414655812985.tar.xz |
schemas: Define schema for a default messenger
Defines a schema that allows users to specify a default instant messaging application.
Diffstat (limited to 'schemas')
-rw-r--r-- | schemas/Makefile.am | 1 | ||||
-rw-r--r-- | schemas/meson.build | 1 | ||||
-rw-r--r-- | schemas/org.mate.applications-messenger.gschema.xml | 9 |
3 files changed, 11 insertions, 0 deletions
diff --git a/schemas/Makefile.am b/schemas/Makefile.am index ec4054d..434ac33 100644 --- a/schemas/Makefile.am +++ b/schemas/Makefile.am @@ -5,6 +5,7 @@ gsettings_SCHEMAS = \ org.mate.applications-at-visual.gschema.xml \ org.mate.applications-browser.gschema.xml \ org.mate.applications-calculator.gschema.xml \ + org.mate.applications-messenger.gschema.xml \ org.mate.applications-office.gschema.xml \ org.mate.applications-terminal.gschema.xml \ org.mate.background.gschema.xml \ diff --git a/schemas/meson.build b/schemas/meson.build index 6397445..c052ba1 100644 --- a/schemas/meson.build +++ b/schemas/meson.build @@ -22,6 +22,7 @@ schemas += [ 'org.mate.applications-at-visual.gschema.xml', 'org.mate.applications-browser.gschema.xml', 'org.mate.applications-calculator.gschema.xml', + 'org.mate.applications-messenger.gschema.xml', 'org.mate.applications-office.gschema.xml', 'org.mate.applications-terminal.gschema.xml', 'org.mate.debug.gschema.xml', diff --git a/schemas/org.mate.applications-messenger.gschema.xml b/schemas/org.mate.applications-messenger.gschema.xml new file mode 100644 index 0000000..621d213 --- /dev/null +++ b/schemas/org.mate.applications-messenger.gschema.xml @@ -0,0 +1,9 @@ +<schemalist gettext-domain="mate-desktop"> + <schema id="org.mate.applications-messenger" path="/org/mate/desktop/applications/messenger/"> + <key name="exec" type="s"> + <default>''</default> + <summary>Instant Messaging application</summary> + <description>Instant Messaging program to use when starting applications that require one.</description> + </key> + </schema> +</schemalist> |