mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
Enable edge tiling and maximize in convergence mode
Allow dragging windows to screen edges: top edge to maximize, left/right edges to tile half-screen. These KWin options were previously always disabled because phone mode has no use for them.
This commit is contained in:
parent
7af389b358
commit
618a920821
1 changed files with 3 additions and 1 deletions
|
|
@ -49,7 +49,9 @@ QMap<QString, QMap<QString, QVariant>> getKwinrcSettings(KSharedConfig::Ptr m_mo
|
||||||
{
|
{
|
||||||
{"BorderlessMaximizedWindows", !convergenceModeEnabled}, // turn off window decorations when not in convergence mode
|
{"BorderlessMaximizedWindows", !convergenceModeEnabled}, // turn off window decorations when not in convergence mode
|
||||||
{"Placement", convergenceModeEnabled ? "Centered" : "Maximizing"}, // maximize all windows by default if we aren't in convergence mode
|
{"Placement", convergenceModeEnabled ? "Centered" : "Maximizing"}, // maximize all windows by default if we aren't in convergence mode
|
||||||
{"InteractiveWindowMoveEnabled", convergenceModeEnabled} // only allow window moving in convergence mode
|
{"InteractiveWindowMoveEnabled", convergenceModeEnabled}, // only allow window moving in convergence mode
|
||||||
|
{"ElectricBorderMaximize", convergenceModeEnabled}, // drag to top edge to maximize in convergence mode
|
||||||
|
{"ElectricBorderTiling", convergenceModeEnabled} // drag to left/right edges to tile half-screen in convergence mode
|
||||||
}},
|
}},
|
||||||
{"Plugins",
|
{"Plugins",
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue