Age | Commit message (Collapse) | Author |
|
* Removes container_floating_move_to_container, instead opting to put
that logic in container_move_to
* In the seat code, focusing a floating view now updates the pending
state only and lets the next transaction carry it over to the current
state. This is required, otherwise it would crash.
* When unfullscreening a floating container, an output check is now done
to see if it should center it.
|
|
Also adjusts container_floating_translate to not change the current
properties directly.
|
|
Fix crash when running `move container to workspace back_and_forth`
|
|
Fix infinite loop when focusing sticky containers via workspace command
|
|
In a multi-output setup, if a sticky container is on one output and
focus is on the other output, and you run (eg) `workspace 1` to focus
the workspace containing the sticky container, an infinite loop would
occur. It would loop infinitely because it would remove the sticky
container from the workspace, add it back to the same workspace, and
then decrement the iterator variable.
The fix just wraps the loop in a workspace comparison.
|
|
The back_and_forth condition is intended to be handled in the else-if
block, but this was never reached because it remained in the first
block's conditions.
|
|
Fix memory leaks in get_socketpath
|
|
|
|
Move workspace moving code out of container_move_to
|
|
|
|
Enable borders on floating SSD xdg-shell views
|
|
Fix commands: criteria, layout, move, workspace
|
|
|
|
|
|
|
|
container_move_to handled moving containers to new parents, as well as
moving workspaces to new outputs.
This commit removes the workspace-moving code from this function and
introduces workspace_move_to_output. Moving workspaces using
container_move_to only happened from the move command, so it's been
implemented as a static function in that file.
Simplifying container_move_to makes it easier for me to fix some issues
in #2420.
|
|
|
|
|
|
|
|
|
|
Allow optional --no-auto-back-and-forth flag, as well as refactoring some logic
|
|
|
|
|
|
|
|
|
|
|
|
criteria
|
|
Fix compiler errors.
|
|
- Some platforms don't expose kill() unless _POSIX_C_SOURCE is defined.
- fork(), execl(), and setsid() need unistd.h on some platforms.
Basically, this fixes some platform-specific build errors.
|
|
Separate root-related code
|
|
|
|
This creates a root.c and moves bits and pieces from elsewhere into it.
* layout_init has been renamed to root_create and moved into root.c
* root_destroy has been created and is called on shutdown
* scratchpad code has been moved into root.c, because hidden scratchpad
containers are stored in the root struct
|
|
Check correct ws for sticky and fix floating iter
|
|
|
|
Show swaynag on config errors
|
|
|
|
|
|
|
|
|
|
Add missing stdlib.h includes to swaynag
|
|
|
|
Fix crash when fullscreen view closes on inactive workspace
|
|
Fix crash when moving cursor over a fullscreen split container
|
|
Deny "move container" when an empty workspace is focused
|
|
Calling container_at_view fails an assertion if the container isn't a
view. Calling tiling_container_at works correctly, as that function
checks if the container is a view and calls container_at_view if so.
|
|
When a view unmaps, normally the surviving ancestor (ie. after reaping)
needs to be arranged. When a fullscreen view unmaps, it arranges the
workspace rather than the surviving ancestor, but didn't handle cases
where the workspace itself was reaped. This happens if the workspace is
not currently shown and the fullscreen view was the last container on
that workspace.
This commit rewrites this part of view_unmap so it's more readable, and
fixes the crash by not arranging the workspace if it's been reaped. Note
that it no longer arranges the output under any circumstance - this
wasn't required anyway.
|
|
|
|
Change exit binding in default config to nag user, matching i3
|
|
|
|
Enable wlr-gamma-control-unstable-v1
|