initial commit
This commit is contained in:
12
data/gschema/meson.build
Normal file
12
data/gschema/meson.build
Normal file
@@ -0,0 +1,12 @@
|
||||
# server doesn't need gschema, only gui or cli
|
||||
if build_gui or build_cli
|
||||
gnome = import('gnome')
|
||||
gschemas = files(
|
||||
'org.tuf.manager.gschema.xml'
|
||||
)
|
||||
gnome.compile_schemas(
|
||||
build_by_default: true,
|
||||
depend_files: gschemas
|
||||
)
|
||||
install_data('org.tuf.manager.gschema.xml', install_dir: join_paths(get_option('prefix'), get_option('datadir'), 'glib-2.0', 'schemas'))
|
||||
endif
|
49
data/gschema/org.tuf.manager.gschema.xml
Normal file
49
data/gschema/org.tuf.manager.gschema.xml
Normal file
@@ -0,0 +1,49 @@
|
||||
<schemalist>
|
||||
<schema id="org.tuf.manager" path="/org/tuf/manager/" gettext-domain="tuf-manager">
|
||||
<key name="restore" type="b">
|
||||
<default>false</default>
|
||||
<summary>Should TUF Manager restore previous settings when run</summary>
|
||||
<description>
|
||||
Should TUF Manager restore previous settings when run
|
||||
</description>
|
||||
</key>
|
||||
<key name="fan-mode" type="i">
|
||||
<default>0</default>
|
||||
<summary>Fan mode</summary>
|
||||
<description>
|
||||
The saved fan mode
|
||||
0 is balanced
|
||||
1 is turbo
|
||||
2 is silent
|
||||
</description>
|
||||
</key>
|
||||
<key name="keyboard-mode" type="i">
|
||||
<default>0</default>
|
||||
<summary>Keyboard mode</summary>
|
||||
<description>
|
||||
The saved keyboard mode
|
||||
0 is static
|
||||
1 is breathing
|
||||
2 is color cycle
|
||||
3 is strobing
|
||||
</description>
|
||||
</key>
|
||||
<key name="keyboard-speed" type="i">
|
||||
<default>0</default>
|
||||
<summary>Keyboard speed</summary>
|
||||
<description>
|
||||
The saved keyboard speed
|
||||
0 is slow
|
||||
1 is medium
|
||||
2 is fast
|
||||
</description>
|
||||
</key>
|
||||
<key name="keyboard-color" type="s">
|
||||
<default>"rgb(255,0,0)"</default>
|
||||
<summary>Keyboard color</summary>
|
||||
<description>
|
||||
The saved keyboard color in rgb format
|
||||
</description>
|
||||
</key>
|
||||
</schema>
|
||||
</schemalist>
|
Reference in New Issue
Block a user