diff options
author | Stefano Karapetsas <[email protected]> | 2012-12-16 23:31:49 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-12-16 23:31:49 +0100 |
commit | fbb7e89c4eab794cc9151e119c7ee94c9494dd7d (patch) | |
tree | c1ac3e7845d042dc74d59957e091fcf130764fec /org.mate.sensors-applet.sensor.gschema.xml.in.in | |
parent | 5a584a07fe8ea0507d4bfe5c1b98f052f0001042 (diff) | |
download | mate-sensors-applet-fbb7e89c4eab794cc9151e119c7ee94c9494dd7d.tar.bz2 mate-sensors-applet-fbb7e89c4eab794cc9151e119c7ee94c9494dd7d.tar.xz |
migrate to GSettings and remove MateConf usage
migrate to DBUS and remove MateComponent usage
remove libmate usage and use glib instead
Diffstat (limited to 'org.mate.sensors-applet.sensor.gschema.xml.in.in')
-rw-r--r-- | org.mate.sensors-applet.sensor.gschema.xml.in.in | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/org.mate.sensors-applet.sensor.gschema.xml.in.in b/org.mate.sensors-applet.sensor.gschema.xml.in.in new file mode 100644 index 0000000..dc8bb8b --- /dev/null +++ b/org.mate.sensors-applet.sensor.gschema.xml.in.in @@ -0,0 +1,68 @@ +<schemalist gettext-domain="@GETTEXT_PACKAGE@"> + <schema id="org.mate.sensors-applet.sensor"> + <key name="path" type="s"> + <default>''</default> + <_summary>Path to filename</_summary> + </key> + <key name="id" type="s"> + <default>''</default> + <_summary>Sensor device ids</_summary> + </key> + <key name="interface" type="s"> + <default>''</default> + <_summary>The sensor device interface</_summary> + </key> + <key name="label" type="s"> + <default>''</default> + <_summary>User defined label</_summary> + </key> + <key name="enabled" type="b"> + <default>true</default> + <_summary>Whether a sensor is enabled or not</_summary> + </key> + <key name="low-value" type="d"> + <default>0</default> + <_summary>Low value</_summary> + </key> + <key name="high-value" type="d"> + <default>0</default> + <_summary>High value</_summary> + </key> + <key name="alarm-enabled" type="b"> + <default>false</default> + <_summary>Whether the sensor has its alarm enabled</_summary> + </key> + <key name="low-alarm-command" type="s"> + <default>''</default> + <_summary>Command to execute when the alarm is activated</_summary> + </key> + <key name="high-alarm-command" type="s"> + <default>''</default> + <_summary>Command to execute when the alarm is activated</_summary> + </key> + <key name="alarm-timeout" type="i"> + <default>0</default> + <_summary>How often each alarm should be sounded (in seconds)</_summary> + </key> + <key name="sensor-type" type="i"> + <default>0</default> + <_summary>Used to identify a sensor in a list</_summary> + </key> + <key name="multiplier" type="d"> + <default>1</default> + <_summary>Multiplier</_summary> + </key> + <key name="offset" type="d"> + <default>0</default> + <_summary>Offset</_summary> + </key> + <key name="icon-type" type="i"> + <default>0</default> + <_summary>Icon type</_summary> + </key> + <key name="graph-color" type="s"> + <default>'#ff0000'</default> + <_summary>Color of the graph for the sensor</_summary> + </key> + </schema> +</schemalist> |