mirror of
https://github.com/FranP-code/wintile.git
synced 2025-10-13 00:33:46 +00:00
By default, the extension minimizes windows after some down presses. This commit makes this behavior configurable: toggling it off stops windows from being minimized.
49 lines
1.9 KiB
XML
49 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<schemalist>
|
|
<schema id="org.gnome.shell.extensions.wintile" path="/org/gnome/shell/extensions/wintile/">
|
|
<key name="cols" type="i">
|
|
<default>0</default>
|
|
<summary>Number of columns</summary>
|
|
<description></description>
|
|
<range min="0" max="2"/>
|
|
</key>
|
|
<key name="use-maximize" type="b">
|
|
<default>true</default>
|
|
<summary>Turn on/off use of maximizing windows</summary>
|
|
<description>When on, certain windows that won't resize full screen like Terminal will, however animations may occur between tile shifts.</description>
|
|
</key>
|
|
<key name="use-minimize" type="b">
|
|
<default>true</default>
|
|
<summary>Turn use of minimizing windows on/off</summary>
|
|
<description>When off, windows will never be minimized.</description>
|
|
</key>
|
|
<key name="preview" type="b">
|
|
<default>true</default>
|
|
<summary>Turn on/off mouse positioning</summary>
|
|
<description>When on, dragging windows with the mouse will allow placement into the grid.</description>
|
|
</key>
|
|
<key name="double-width" type="b">
|
|
<default>true</default>
|
|
<summary>Use double width previews on sides in 4 column mode</summary>
|
|
<description>When on, dragging a window to the side will preview 2 columns wide instead of 1.</description>
|
|
</key>
|
|
<key name="distance" type="i">
|
|
<default>25</default>
|
|
<summary>Pixels from edge to start preview</summary>
|
|
<description></description>
|
|
<range min="0" max="150"/>
|
|
</key>
|
|
<key name="delay" type="i">
|
|
<default>500</default>
|
|
<summary>Delay in ms before preview displays</summary>
|
|
<description></description>
|
|
<range min="25" max="1000"/>
|
|
</key>
|
|
<key name="debug" type="b">
|
|
<default>false</default>
|
|
<summary>Turn on/off debug output</summary>
|
|
<description></description>
|
|
</key>
|
|
</schema>
|
|
</schemalist>
|