diff options
author | Patrick Monnerat <[email protected]> | 2019-05-22 18:02:59 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-06-05 22:00:27 +0200 |
commit | fd4405cc794d6fd3d560f06cfbaecca08e16a51e (patch) | |
tree | fbf547fd229dcd1ff4df06f1e27bdc27322dfecc /plugins/pythonconsole/org.mate.pluma.plugins.pythonconsole.gschema.xml.in | |
parent | ce58b8815723b198a48202750e46e6deb2012c2d (diff) | |
download | pluma-fd4405cc794d6fd3d560f06cfbaecca08e16a51e.tar.bz2 pluma-fd4405cc794d6fd3d560f06cfbaecca08e16a51e.tar.xz |
pythonconsole plugin: change source code for Python 2 & 3 compatibility.
Also drop mateconf and use gsettings for preferences.
Preferences are now triggered as a PeasGtk.Configurable.
Diffstat (limited to 'plugins/pythonconsole/org.mate.pluma.plugins.pythonconsole.gschema.xml.in')
-rw-r--r-- | plugins/pythonconsole/org.mate.pluma.plugins.pythonconsole.gschema.xml.in | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/pythonconsole/org.mate.pluma.plugins.pythonconsole.gschema.xml.in b/plugins/pythonconsole/org.mate.pluma.plugins.pythonconsole.gschema.xml.in new file mode 100644 index 00000000..7897fa91 --- /dev/null +++ b/plugins/pythonconsole/org.mate.pluma.plugins.pythonconsole.gschema.xml.in @@ -0,0 +1,30 @@ +<schemalist> + <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.pluma.plugins.pythonconsole" path="/org/mate/pluma/plugins/pythonconsole/"> + <key name="command-color" type="s"> + <default>'#314e6c'</default> + <summary>Command Color Text</summary> + <description>The command color text</description> + </key> + <key name="error-color" type="s"> + <default>'#990000'</default> + <summary>Error Color Text</summary> + <description>The error color text</description> + </key> + <key name="use-system-font" type="b"> + <default>true</default> + <summary>Whether to use the system font</summary> + <description> + If true, the terminal will use the desktop-global standard + font if it’s monospace (and the most similar font it can + come up with otherwise). + </description> + </key> + <key name="font" type="s"> + <default>'Monospace 10'</default> + <summary>Font</summary> + <description> + A Pango font name. Examples are “Sans 12” or “Monospace Bold 14”. + </description> + </key> + </schema> +</schemalist> |