-
Notifications
You must be signed in to change notification settings - Fork 177
/
grid.xml
81 lines (81 loc) · 3.45 KB
/
grid.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
<?xml version="1.0"?>
<wayfire>
<plugin name="grid">
<_short>Grid</_short>
<_long>A plugin to position the windows in certain regions of the output.</_long>
<category>Window Management</category>
<option name="duration" type="animation">
<_short>Duration</_short>
<_long>Sets the duration of the animation in milliseconds.</_long>
<default>300ms</default>
</option>
<option name="type" type="string">
<_short>Type</_short>
<_long>Sets the type of the animation.</_long>
<default>crossfade</default>
<desc>
<value>none</value>
<_name>None</_name>
</desc>
<desc>
<value>crossfade</value>
<_name>Crossfade</_name>
</desc>
<desc>
<value>wobbly</value>
<_name>Wobbly</_name>
</desc>
</option>
<!-- Key-bindings -->
<option name="slot_bl" type="activator">
<_short>Bottom left</_short>
<_long>Positions the window in the bottom left corner of the screen with the specified activator. The window takes 1/4 of the screen.</_long>
<default><super> KEY_KP1</default>
</option>
<option name="slot_b" type="activator">
<_short>Bottom</_short>
<_long>Positions the window in the bottom edge of the screen with the specified activator. The window takes half of the screen.</_long>
<default><super> KEY_KP2</default>
</option>
<option name="slot_br" type="activator">
<_short>Bottom right</_short>
<_long>Positions the window in the bottom right corner of the screen with the specified activator. The window takes 1/4 of the screen.</_long>
<default><super> KEY_KP3</default>
</option>
<option name="slot_l" type="activator">
<_short>Left</_short>
<_long>Positions the window in the left edge of the screen with the specified activator. The window takes half of the screen.</_long>
<default><super> KEY_LEFT | <super> KEY_KP4</default>
</option>
<option name="slot_c" type="activator">
<_short>Center</_short>
<_long>Positions the window in the center of the screen with the specified activator. The window is maximized.</_long>
<default><super> KEY_UP | <super> KEY_KP5</default>
</option>
<option name="slot_r" type="activator">
<_short>Right</_short>
<_long>Positions the window in the right edge of the screen with the specified activator. The window takes half of the screen.</_long>
<default><super> KEY_RIGHT | <super> KEY_KP6</default>
</option>
<option name="slot_tl" type="activator">
<_short>Top left</_short>
<_long>Positions the window in the top left corner of the screen with the specified activator. The window takes 1/4 of the screen.</_long>
<default><super> KEY_KP7</default>
</option>
<option name="slot_t" type="activator">
<_short>Top</_short>
<_long>Positions the window in the top edge of the screen with the specified activator. The window takes half of the screen.</_long>
<default><super> KEY_KP8</default>
</option>
<option name="slot_tr" type="activator">
<_short>Top right</_short>
<_long>Positions the window in the top right corner of the screen with the specified activator. The window takes 1/4 of the screen.</_long>
<default><super> KEY_KP9</default>
</option>
<option name="restore" type="activator">
<_short>Restore</_short>
<_long>Restores the window to its original size and position with the specified activator.</_long>
<default><super> KEY_DOWN | <super> KEY_KP0</default>
</option>
</plugin>
</wayfire>