-
Notifications
You must be signed in to change notification settings - Fork 13
/
schema.gschema.xml
210 lines (210 loc) · 7.05 KB
/
schema.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<schemalist>
<schema id="org.gnome.shell.extensions.tilingnome" path="/org/gnome/shell/extensions/tilingnome/">
<key name="layouts" type="as">
<choices>
<choice value='horizontal'/>
<choice value='vertical'/>
<choice value='spiral'/>
</choices>
<default>['horizontal', 'vertical', 'spiral']</default>
<summary>Layouts</summary>
<description>
The order of available layouts.
</description>
</key>
<key name="animation-transition" type="s">
<choices>
<choice value='linear'/>
<choice value='easeInSine'/>
<choice value='easeOutSine'/>
<choice value='easeInQuad'/>
<choice value='easeOutQuad'/>
<choice value='easeInCubic'/>
<choice value='easeOutCubic'/>
<choice value='easeInQuart'/>
<choice value='easeOutQuart'/>
<choice value='easeInQuint'/>
<choice value='easeOutQuint'/>
<choice value='easeInExpo'/>
<choice value='easeOutExpo'/>
<choice value='easeInCirc'/>
<choice value='easeOutCirc'/>
<choice value='easeInElastic'/>
<choice value='easeOutElastic'/>
<choice value='easeInBack'/>
<choice value='easeOutBack'/>
<choice value='easeInBounce'/>
<choice value='easeOutBounce'/>
</choices>
<default>'easeOutExpo'</default>
<summary>Animation Transition</summary>
<description>
The transition type to apply when animating windows.
For example, 'easeOutElastic' applies a "wobbly windows" effect.
</description>
</key>
<key name="animation-duration" type="d">
<range min="0.0"/>
<default>0.2</default>
<summary>Animation Duration</summary>
<description>
The animation duration in seconds.
</description>
</key>
<key name="no-mutter-shadows" type="b">
<default>true</default>
<summary>No Mutter Shadows</summary>
<description>
Whether to disable server-side shadows.
</description>
</key>
<key name="auto-tile-window-types" type="as">
<default>['NORMAL']</default>
<summary>Auto Tile Window Types</summary>
<description>
Automatically tile windows of the specified types at creation.
</description>
</key>
<key name="master-count" type="u">
<range min="1"/>
<default>1</default>
<summary>Master Count</summary>
<description>
The master tile count.
</description>
</key>
<key name="split-ratio" type="d">
<range min="0.10" max="0.90"/>
<default>0.5</default>
<summary>Split Ratio</summary>
<description>
The screen ratio for which windows are split.
</description>
</key>
<key name="split-ratio-step" type="d">
<range min="0.0" max="0.40"/>
<default>0.05</default>
<summary>Split Ratio Step</summary>
<description>
The ratio at which the split ratio is increased or decreased.
</description>
</key>
<key name="margins" type="(iiii)">
<default>(0, 0, 0, 0)</default>
<summary>Margins</summary>
<description>
The margins in pixels to add to the screen's x, y, width and height.
</description>
</key>
<key name="minimum-gaps" type="(iiii)">
<default>(0, 0, 0, 0)</default>
<summary>Minimum Gaps</summary>
<description>
The minimum amount of pixels to randomly gap windows' x, y, width and
height with.
</description>
</key>
<key name="maximum-gaps" type="(iiii)">
<default>(0, 0, 0, 0)</default>
<summary>Maximum Gaps</summary>
<description>
The maximum amount of pixels to randomly gap windows' x, y, width and
height with.
</description>
</key>
</schema>
<schema id="org.gnome.shell.extensions.tilingnome.keybindings" path="/org/gnome/shell/extensions/tilingnome/keybindings/">
<key name="toggle-tile" type="as">
<default>['<Super>x']</default>
<summary>Toggle Tile</summary>
<description>
Toggle whether to tile the currently focused window.
</description>
</key>
<key name="switch-next-layout" type="as">
<default>['<Super>z']</default>
<summary>Switch Next Layout</summary>
<description>
Switch to the next available layout.
</description>
</key>
<key name="switch-previous-layout" type="as">
<default>['<Shift><Super>z']</default>
<summary>Switch Previous Layout</summary>
<description>
Switch to the previous available layout.
</description>
</key>
<key name="focus-next-tile" type="as">
<default>['<Super>j']</default>
<summary>Focus Next Tile</summary>
<description>
Focus the next tile in the tile list.
</description>
</key>
<key name="focus-previous-tile" type="as">
<default>['<Super>k']</default>
<summary>Focus Previous Tile</summary>
<description>
Focus the previous tile in the tile list.
</description>
</key>
<key name="focus-first-tile" type="as">
<default>['<Super>Return']</default>
<summary>Focus Master Tile</summary>
<description>
Focus the first tile in the tile list.
</description>
</key>
<key name="swap-next-tile" type="as">
<default>['<Shift><Super>j']</default>
<summary>Swap Next Tile</summary>
<description>
Swap the currently focused tile with the next tile in the tile list.
</description>
</key>
<key name="swap-previous-tile" type="as">
<default>['<Shift><Super>k']</default>
<summary>Swap Previous Tile</summary>
<description>
Swap the currently focused tile with the previous tile in the tile
list.
</description>
</key>
<key name="swap-first-tile" type="as">
<default>['<Shift><Super>Return']</default>
<summary>Swap First Tile</summary>
<description>
Swap the currently focused tile with the first tile in the tile list.
</description>
</key>
<key name="increase-split" type="as">
<default>['<Super>i']</default>
<summary>Increase Split</summary>
<description>
Increase the split ratio by the split ratio step.
</description>
</key>
<key name="decrease-split" type="as">
<default>['<Super>u']</default>
<summary>Decrease Split</summary>
<description>
Decrease the split ratio by the split ratio step.
</description>
</key>
<key name="increase-master-count" type="as">
<default>['<Shift><Super>i']</default>
<summary>Increase Master Count</summary>
<description>
Increase the master count by 1.
</description>
</key>
<key name="decrease-master-count" type="as">
<default>['<Shift><Super>u']</default>
<summary>Decrease Master Count</summary>
<description>
Decrease the master count by 1.
</description>
</key>
</schema>
</schemalist>