/usr/share/glib-2.0/schemas/org.mate.font-rendering.gschema.xml is in mate-settings-daemon-pulse 1.8.2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | <?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="mate-settings-daemon">
<enum id="org.mate.font-rendering.Antialiasing">
<value value="0" nick="none"/>
<value value="1" nick="grayscale"/>
<value value="2" nick="rgba"/>
</enum>
<enum id="org.mate.font-rendering.Hinting">
<value value="0" nick="none"/>
<value value="1" nick="slight"/>
<value value="2" nick="medium"/>
<value value="3" nick="full"/>
</enum>
<enum id="org.mate.font-rendering.RgbaOrder">
<value value="0" nick="rgb"/>
<value value="1" nick="bgr"/>
<value value="2" nick="vrgb"/>
<value value="3" nick="vbgr"/>
</enum>
<schema path="/org/mate/desktop/font-rendering/" id="org.mate.font-rendering">
<key type="d" name="dpi">
<default>0.0</default>
<summary>DPI</summary>
<description>The resolution used for converting font sizes to pixel sizes, in dots per inch.</description>
</key>
<key name="antialiasing" enum="org.mate.font-rendering.Antialiasing">
<default>'grayscale'</default>
<summary>Antialiasing</summary>
<description>The type of antialiasing to use when rendering fonts. Possible values are: "none" for no antialiasing, "grayscale" for standard grayscale antialiasing, and "rgba" for subpixel antialiasing (LCD screens only).</description>
</key>
<key name="hinting" enum="org.mate.font-rendering.Hinting">
<default>'medium'</default>
<summary>Hinting</summary>
<description>The type of hinting to use when rendering fonts. Possible values are: "none" for no hinting, "slight" for basic, "medium" for moderate, and "full" for maximum hinting (may cause distortion of letter forms).</description>
</key>
<key name="rgba-order" enum="org.mate.font-rendering.RgbaOrder">
<default>'rgb'</default>
<summary>RGBA order</summary>
<description>The order of subpixel elements on an LCD screen; only used when antialiasing is set to "rgba". Possible values are: "rgb" for red on left (most common), "bgr" for blue on left, "vrgb" for red on top, "vbgr" for red on bottom.</description>
</key>
</schema>
</schemalist>
|