-
Notifications
You must be signed in to change notification settings - Fork 9
/
org.perezdecastro.Revolt.gschema.xml
47 lines (44 loc) · 1.56 KB
/
org.perezdecastro.Revolt.gschema.xml
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
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<schemalist>
<schema id="org.perezdecastro.Revolt">
<key name="riot-url" type="s">
<summary>Base URL of the Element installation wrapped by Revolt</summary>
<default>"https://app.element.io"</default>
</key>
<key name="zoom-factor" type="d">
<summary>Zoom factor applied to to application</summary>
<range min="0.75" max="2.00"/>
<default>1.0</default>
</key>
<key name="enable-developer-tools" type="b">
<summary>Allow usage of the web inspector and JavaScript console</summary>
<default>false</default>
</key>
<key name="use-header-bar" type="b">
<summary>Whether to use a header bar. Disabling uses the decorations provided by the window manager.</summary>
<default>true</default>
</key>
<key name="hide-on-window-close" type="b">
<summary>Hide the window instead of closing it when the window close button (X) is activated.</summary>
<default>false</default>
</key>
<child name="saved-state" schema="org.perezdecastro.Revolt.State"/>
</schema>
<schema id="org.perezdecastro.Revolt.State">
<child name="main-window" schema="org.perezdecastro.Revolt.WindowState"/>
</schema>
<schema id="org.perezdecastro.Revolt.WindowState">
<key name="width" type="u">
<summary>Width of the window</summary>
<default>900</default>
</key>
<key name="height" type="u">
<summary>Height of the window</summary>
<default>650</default>
</key>
<key name="maximized" type="b">
<summary>Whether the window is maximized</summary>
<default>false</default>
</key>
</schema>
</schemalist>