See labwc-config(5) for further information on how to define regions.
+*<action name="UnSnap" />*
+ Resize and move active window back to its untiled position if
+ it had been tiled to a direction or region.
+
*<action name="NextWindow" />*++
*<action name="PreviousWindow" />*
Cycle focus to next/previous window respectively.++
ACTION_TYPE_GO_TO_DESKTOP,
ACTION_TYPE_TOGGLE_SNAP_TO_REGION,
ACTION_TYPE_SNAP_TO_REGION,
+ ACTION_TYPE_UNSNAP,
ACTION_TYPE_TOGGLE_KEYBINDS,
ACTION_TYPE_FOCUS_OUTPUT,
ACTION_TYPE_MOVE_TO_OUTPUT,
"GoToDesktop",
"ToggleSnapToRegion",
"SnapToRegion",
+ "UnSnap",
"ToggleKeybinds",
"FocusOutput",
"MoveToOutput",
wlr_log(WLR_ERROR, "Invalid SnapToRegion id: '%s'", region_name);
}
break;
+ case ACTION_TYPE_UNSNAP:
+ if (view && view->maximized == VIEW_AXIS_NONE && !view->fullscreen
+ && view_is_tiled(view)) {
+ view_set_untiled(view);
+ view_apply_natural_geometry(view);
+ }
+ break;
case ACTION_TYPE_TOGGLE_KEYBINDS:
if (view) {
view_toggle_keybinds(view);