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
|
<?xml version="1.0"?>
<wayfire>
<plugin name="scale">
<_short>Scale</_short>
<_long>Show all views on screen.</_long>
<category>Accessibility</category>
<group>
<_short>Behavior</_short>
<option name="toggle" type="activator">
<_short>Toggle</_short>
<_long>Toggles scale with the specified activator.</_long>
<default><super> KEY_P</default>
</option>
<option name="toggle_all" type="activator">
<_short>Toggle for all workspaces</_short>
<_long>Toggles scale showing windows from all workspaces.</_long>
<default></default>
</option>
<option name="duration" type="animation">
<_short>Animation Transition Time</_short>
<_long>Time it takes for views to transition. Units are in milliseconds.</_long>
<default>750ms</default>
<min>0</min>
</option>
<option name="allow_zoom" type="bool">
<_short>Allow Zoomed Views</_short>
<_long>Whether scaled views can have a size larger than their original size.</_long>
<default>false</default>
</option>
<option name="middle_click_close" type="bool">
<_short>Close views with middle click</_short>
<_long>Use the middle mouse button to close views in the scale state. Only applies if interactive mode is not enabled.</_long>
<default>false</default>
</option>
<option name="include_minimized" type="bool">
<_short>Include minimized views</_short>
<_long>Whether to show views that are minimized when starting scale.</_long>
<default>false</default>
</option>
<option name="close_on_new_view" type="bool">
<_short>Close on new views</_short>
<_long>Whether to close scale when a new view is mapped.</_long>
<default>false</default>
</option>
</group>
<group>
<_short>Appearance</_short>
<option name="spacing" type="int">
<_short>Spacing</_short>
<_long>Sets the spacing between the views.</_long>
<default>50</default>
<min>0</min>
</option>
<option name="outer_margin" type="int">
<_short>Outer Margin</_short>
<_long>The outer margin is the space reserved between the scaled windows and the monitor edges while scale is active.</_long>
<default>0</default>
<min>0</min>
</option>
<option name="inactive_alpha" type="double">
<_short>Inactive Opacity</_short>
<_long>Set the opacity value of the inactive windows.</_long>
<default>0.75</default>
<precision>0.05</precision>
<min>0.0</min>
<max>1.0</max>
</option>
<option name="minimized_alpha" type="double">
<_short>Minimized View Opacity</_short>
<_long>Set the opacity value of minimized views that are shown in scale.</_long>
<default>0.45</default>
<precision>0.05</precision>
<min>0.0</min>
<max>1.0</max>
</option>
<option name="title_overlay" type="string">
<_short>Show views' title</_short>
<_long>Whether to display the title of each view as an overlay.</_long>
<default>all</default>
<desc>
<value>never</value>
<_name>Never</_name>
</desc>
<desc>
<value>mouse</value>
<_name>Only for the view under the pointer</_name>
</desc>
<desc>
<value>all</value>
<_name>For all views</_name>
</desc>
</option>
<option name="title_font_size" type="int">
<_short>Font size for title</_short>
<_long>Size of font used to display an overlay of each view's title.</_long>
<default>16</default>
</option>
<option name="title_position" type="string">
<_short>Position for title</_short>
<_long>Position for overlays of views' titles when shown.</_long>
<default>center</default>
<desc>
<value>top</value>
<_name>Top</_name>
</desc>
<desc>
<value>center</value>
<_name>Center</_name>
</desc>
<desc>
<value>bottom</value>
<_name>Bottom</_name>
</desc>
</option>
<option name="bg_color" type="color">
<_short>Background color</_short>
<_long>Background color for title overlay text.</_long>
<default>0.1 0.1 0.1 0.9</default>
</option>
<option name="text_color" type="color">
<_short>Text color</_short>
<_long>Text color for title overlay.</_long>
<default>0.8 0.8 0.8 1.0</default>
</option>
</group>
</plugin>
</wayfire>
|