-
Notifications
You must be signed in to change notification settings - Fork 1
/
layouts.gschema.xml
84 lines (84 loc) · 3.24 KB
/
layouts.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<schemalist>
<schema id="org.gnome.shell.extensions.breezytile.layouts" path="/org/gnome/shell/extensions/breezytile/layouts/">
<key name="maximize" type="b">
<default>false</default>
<summary>Maximize layout</summary>
<description>Maximize all windows</description>
</key>
<key name="split" type="b">
<default>false</default>
<summary>Split layout</summary>
<description>Put all windows side by side, two at a time</description>
</key>
<key name="half" type="b">
<default>false</default>
<summary>Half layout</summary>
<description>Tile windows according to screen ratio</description>
</key>
<key name="half-horizontal" type="b">
<default>false</default>
<summary>Half horizontal layout</summary>
<description>Tile windows horizontally</description>
</key>
<key name="half-vertical" type="b">
<default>false</default>
<summary>Half vertical layout</summary>
<description>Tile windows vertically</description>
</key>
<key name="ratio" type="b">
<default>true</default>
<summary>Ratio based grid layout</summary>
<description>Tile windows in both way according to the ratio of the remaining space</description>
</key>
<key name="ratio-value" type="d">
<default>0.45</default>
<summary>Ratio of the ratio layout</summary>
<description>Determines the ratio of the tiling</description>
</key>
<key name="grid" type="b">
<default>false</default>
<summary>Regular grid layout</summary>
<description>Tile windows according to a regular grid</description>
</key>
<key name="float" type="b">
<default>true</default>
<summary>Float layout</summary>
<description>No tiling is done, windows are floating freely</description>
</key>
<key name="simple" type="b">
<default>false</default>
<summary>Simple layout</summary>
<description>Split screen unidirectionally according to screen ratio</description>
</key>
<key name="simple-horizontal" type="b">
<default>false</default>
<summary>Simple horizontal layout</summary>
<description>Split screen horizontally</description>
</key>
<key name="simple-vertical" type="b">
<default>false</default>
<summary>Simple vertical layout</summary>
<description>Split screen vertically</description>
</key>
<key name="gap" type="i">
<default>8</default>
<summary>Gap size around tiled windows</summary>
<description>Determines the gap size between windows</description>
</key>
<key name="use-screen-gap" type="b">
<default>true</default>
<summary>Use a different gap size for screen</summary>
<description>Determines whether to use the screen gap config</description>
</key>
<key name="screen-gap" type="i">
<default>48</default>
<summary>Screen gap size around tiled windows</summary>
<description>Determines the screen edge gap size between windows</description>
</key>
<key name="tween-time" type="d">
<default>0.25</default>
<summary>Animation duration</summary>
<description>Ajust duration of window move/resize animation</description>
</key>
</schema>
</schemalist>