sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit e3c63bf58d0744dfb436f0f38442ce3735e40f47
parent fbf9191fb8373e6718c61586329aaf362eeaa0c0
Author: Ankit Pandey <anpandey@protonmail.com>
Date:   Sat, 17 Dec 2022 15:01:20 -0800

commands/move: Warp cursor after moving workspace to another output

This makes sway's behavior consistent with i3 when `mouse_warping` is
set to any value besides `none`.

Fixes #7027.

Diffstat:
Msway/commands/move.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/sway/commands/move.c b/sway/commands/move.c @@ -686,6 +686,9 @@ static struct cmd_results *cmd_move_workspace(int argc, char **argv) { arrange_output(old_output); arrange_output(new_output); + struct sway_seat *seat = config->handler_context.seat; + seat_consider_warp_to_focus(seat); + return cmd_results_new(CMD_SUCCESS, NULL); }