diff options
author | Victor Kareh <[email protected]> | 2019-08-11 18:32:45 +0300 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-08-11 19:35:04 +0200 |
commit | 1a920c723d2a4c446dc9c4c628cb3904f942a116 (patch) | |
tree | 980d8da669d6771e1d6130b27fab5ba7085e5bf8 /data/org.mate.peripherals-keyboard.gschema.xml.in | |
parent | 96e46794a82bf4b2a3edce4502f09f1c4ec85678 (diff) | |
download | mate-settings-daemon-1a920c723d2a4c446dc9c4c628cb3904f942a116.tar.bz2 mate-settings-daemon-1a920c723d2a4c446dc9c4c628cb3904f942a116.tar.xz |
Add remaining peripheral schemas from mate-desktop
Diffstat (limited to 'data/org.mate.peripherals-keyboard.gschema.xml.in')
-rw-r--r-- | data/org.mate.peripherals-keyboard.gschema.xml.in | 49 |
1 files changed, 49 insertions, 0 deletions
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> |