kwin/effects/desktopgrid/desktopgrid.kcfg
Konstantinos Smanis dbcf43abfe Allow configuring click behavior in Desktop Grid effect
The following click behaviors are defined:
 * Switch desktop and activate window [default]
 * Switch desktop only

The former emulates the previous default of activating clicked windows
using the Present Windows effect. The latter introduces a new mode where
the clicked window is not activated, allowing the user to select a
virtual desktop without worrying about disrupting the last active
window.

The configuration toggle that controlled the use of the Present Windows
effect has been subsumed into the first click behavior, i.e., if the
effect is enabled, it will be implicitly triggered.
2020-10-30 09:39:00 +00:00

32 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
<kcfgfile arg="true"/>
<group name="Effect-DesktopGrid">
<entry name="BorderActivate" type="IntList" />
<entry name="TouchBorderActivate" type="IntList" />
<entry name="ZoomDuration" type="Int">
<default>0</default>
</entry>
<entry name="BorderWidth" type="Int">
<default>10</default>
</entry>
<entry name="DesktopNameAlignment" type="Int">
<default>0</default>
</entry>
<entry name="LayoutMode" type="Int">
<default code="true">0</default>
</entry>
<entry name="CustomLayoutRows" type="Int">
<default>2</default>
</entry>
<entry name="ClickBehavior" type="Int">
<default code="true">0</default>
</entry>
<entry name="ShowAddRemove" type="Bool">
<default>true</default>
</entry>
</group>
</kcfg>