summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/Makefile.am1
-rw-r--r--data/org.mate.peripherals-keyboard.gschema.xml.in49
2 files changed, 50 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
index 33764fd..3fad838 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -3,6 +3,7 @@ NULL =
msd_gschemas_in = \
org.mate.applications-at.gschema.xml.in \
org.mate.font-rendering.gschema.xml.in \
+ org.mate.peripherals-keyboard.gschema.xml.in \
org.mate.peripherals-mouse.gschema.xml.in \
org.mate.peripherals-smartcard.gschema.xml.in \
org.mate.peripherals-touchpad.gschema.xml.in \
diff --git a/data/org.mate.peripherals-keyboard.gschema.xml.in b/data/org.mate.peripherals-keyboard.gschema.xml.in
new file mode 100644
index 0000000..f519987
--- /dev/null
+++ b/data/org.mate.peripherals-keyboard.gschema.xml.in
@@ -0,0 +1,49 @@
+<schemalist gettext-domain="mate-desktop">
+ <enum id="org.mate.peripherals-keyboard.NumLockState">
+ <value nick="off" value="0"/>
+ <value nick="on" value="1"/>
+ <value nick="unknown" value="2"/>
+ </enum>
+ <schema id="org.mate.peripherals-keyboard" path="/org/mate/desktop/peripherals/keyboard/">
+ <key name="repeat" type="b">
+ <default>true</default>
+ </key>
+ <key name="click" type="b">
+ <default>true</default>
+ </key>
+ <key name="rate" type="i">
+ <default>30</default>
+ </key>
+ <key name="delay" type="i">
+ <default>500</default>
+ </key>
+ <key name="click-volume" type="i">
+ <default>0</default>
+ </key>
+ <key name="bell-mode" type="s">
+ <default>'on'</default>
+ <description>possible values are "on", "off", and "custom".</description>
+ </key>
+ <key name="bell-pitch" type="i">
+ <default>400</default>
+ </key>
+ <key name="bell-duration" type="i">
+ <default>100</default>
+ </key>
+ <key name="bell-custom-file" type="s">
+ <default>''</default>
+ <summary>Keyboard Bell Custom Filename</summary>
+ <description>File name of the bell sound to be played.</description>
+ </key>
+ <key name="remember-numlock-state" type="b">
+ <default>true</default>
+ <summary>Remember NumLock state</summary>
+ <description>When set to true, MATE will remember the state of the NumLock LED between sessions.</description>
+ </key>
+ <key name="numlock-state" enum="org.mate.peripherals-keyboard.NumLockState">
+ <default>'unknown'</default>
+ <summary>NumLock state</summary>
+ <description>The remembered state of the NumLock LED.</description>
+ </key>
+ </schema>
+</schemalist>