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
|
<?xml version="1.0"?>
<wayfire>
<plugin name="vswitch">
<_short>Viewport Switcher</_short>
<_long>A plugin to switch workspaces in a grid.</_long>
<category>Desktop</category>
<option name="binding_left" type="activator">
<_short>Left</_short>
<_long>Switches to workspace left with the specified activator.</_long>
<default><super> <alt> KEY_LEFT</default>
</option>
<option name="binding_right" type="activator">
<_short>Right</_short>
<_long>Switches to workspace right with the specified activator.</_long>
<default><super> <alt> KEY_RIGHT</default>
</option>
<option name="binding_up" type="activator">
<_short>Up</_short>
<_long>Switches to workspace up with the specified activator.</_long>
<default><super> <alt> KEY_UP</default>
</option>
<option name="binding_down" type="activator">
<_short>Down</_short>
<_long>Switches to workspace down with the specified activator.</_long>
<default><super> <alt> KEY_DOWN</default>
</option>
<option name="binding_last" type="activator">
<_short>Last</_short>
<_long>Switches to the last active workspace with the specified activator.</_long>
<default></default>
</option>
<option name="with_win_left" type="activator">
<_short>Left with window</_short>
<_long>Switches to workspace left with the focused window with the specified activator.</_long>
<default><super> <alt> <shift> KEY_LEFT</default>
</option>
<option name="with_win_right" type="activator">
<_short>Right with window</_short>
<_long>Switches to workspace right with the focused window with the specified activator.</_long>
<default><super> <alt> <shift> KEY_RIGHT</default>
</option>
<option name="with_win_up" type="activator">
<_short>Up with window</_short>
<_long>Switches to workspace up with the focused window with the specified activator.</_long>
<default><super> <alt> <shift> KEY_UP</default>
</option>
<option name="with_win_down" type="activator">
<_short>Down with window</_short>
<_long>Switches to workspace down with the focused window with the specified activator.</_long>
<default></default>
</option>
<option name="with_win_last" type="activator">
<_short>Last with window</_short>
<_long>Switches to the last active workspace with the focused window with the specified activator.</_long>
<default></default>
</option>
<option name="send_win_left" type="activator">
<_short>Send window to the left</_short>
<_long>Send the focused window to the workspace on the left.</_long>
<default></default>
</option>
<option name="send_win_right" type="activator">
<_short>Send window to the right</_short>
<_long>Send the focused window to the workspace on the right.</_long>
<default></default>
</option>
<option name="send_win_up" type="activator">
<_short>Send window above</_short>
<_long>Send the focused window to the workspace above.</_long>
<default></default>
</option>
<option name="send_win_down" type="activator">
<_short>Send window below</_short>
<_long>Send the focused window to the workspace below.</_long>
<default></default>
</option>
<option name="send_win_last" type="activator">
<_short>Send window to last</_short>
<_long>Send the focused window to the last active workspace with the specified activator.</_long>
<default></default>
</option>
<option name="workspace_bindings" type="dynamic-list" type-hint="dict">
<_short>Go-To-Workspace bindings</_short>
<_long>Go-To-Workspace bindings</_long>
<entry prefix="binding_" type="activator">
<_short>Binding for workspace N</_short>
<_long>Sets the binding to go to workspace N.</_long>
</entry>
</option>
<option name="workspace_bindings_win" type="dynamic-list" type-hint="dict">
<_short>Go-To-Workspace with window bindings</_short>
<_long>Go-To-Workspace with window bindings</_long>
<entry prefix="with_win_" type="activator">
<_short>Binding for workspace N</_short>
<_long>Sets the binding to go to workspace N with currently focused window.</_long>
</entry>
</option>
<option name="bindings_win" type="dynamic-list" type-hint="dict">
<_short>Go-To-Workspace with window bindings</_short>
<_long>Go-To-Workspace with window bindings</_long>
<entry prefix="send_win_" type="activator">
<_short>Move window to workspace N</_short>
<_long>Sets the binding to move focused window to workspace N.</_long>
</entry>
</option>
<option name="duration" type="animation">
<_short>Duration</_short>
<_long>Sets the duration of the workspace switching animation in milliseconds.</_long>
<default>300</default>
</option>
<option name="gap" type="int">
<_short>Gap size</_short>
<_long>Sets the gap between workspaces when animating the transition between them.</_long>
<default>20</default>
</option>
<option name="background" type="color">
<_short>Background color</_short>
<_long>Sets the background color of gaps.</_long>
<default>0.1 0.1 0.1 1.0</default>
</option>
<option name="wraparound" type="bool">
<_short>Wraparound</_short>
<_long>Whether to wrap around when at the edge of the workspace grid.</_long>
<default>false</default>
</option>
</plugin>
</wayfire>
|