-
Notifications
You must be signed in to change notification settings - Fork 177
/
move.xml
64 lines (64 loc) · 2.66 KB
/
move.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
<?xml version="1.0"?>
<wayfire>
<plugin name="move">
<_short>Move</_short>
<_long>A plugin to move windows around by dragging them from any part (not just the title bar).</_long>
<category>Window Management</category>
<option name="activate" type="button">
<_short>Activate</_short>
<_long>When the specified button is held down, you can drag windows to move them.</_long>
<default><super> BTN_LEFT</default>
</option>
<!-- "Aero Snap" -->
<option name="enable_snap" type="bool">
<_short>Snap</_short>
<_long>Enables or disables snapping the window being moved to an edge of the screen.</_long>
<default>true</default>
</option>
<option name="snap_threshold" type="int">
<_short>Snap threshold</_short>
<_long>Sets the amount of pixels from the edge of the screen for which aero-snap gets triggered.</_long>
<default>10</default>
</option>
<option name="quarter_snap_threshold" type="int">
<_short>Quarter snap threshold</_short>
<_long>Sets the amount of pixels from the corner of the screen for which quarter aero-snap gets triggered. The mouse should still be within snap_threshold of at least one edge of the screen.</_long>
<default>50</default>
</option>
<option name="enable_snap_off" type="bool">
<_short>Snap off</_short>
<_long>Enables or disables snapping off the window being grabbed from an edge of the screen.</_long>
<default>true</default>
</option>
<option name="snap_off_threshold" type="int">
<_short>Snap off threshold</_short>
<_long>When attempting to move a snapped window, this option requires the user to move at least the specified amount of pixels before the window actually moves. This only takes effect with `move.enable_snap_off`.</_long>
<default>10</default>
</option>
<option name="join_views" type="bool">
<_short>Disallow independently moving dialogues</_short>
<_long>Disallows independently moving dialogues.</_long>
<default>false</default>
</option>
<option name="preview_base_color" type="color">
<_short>Preview fill color</_short>
<default>0.5 0.5 1 0.5</default>
</option>
<option name="preview_base_border" type="color">
<_short>Preview border color</_short>
<default>0.25 0.25 0.5 0.8</default>
</option>
<option name="preview_border_width" type="int">
<_short>Preview border width</_short>
<default>3</default>
<min>0</min>
</option>
<option name="workspace_switch_after" type="int">
<_short>Switch workspace after</_short>
<_long>Switch workspace when the mouse stays on the output edge for the
given duration in milliseconds (-1 to disable).</_long>
<default>-1</default>
<min>-1</min>
</option>
</plugin>
</wayfire>