sway

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

commit da9c86c608b33d78e25ced5858be579f502efd63
parent d8badceb546483a675133235536afcdb897c0e9c
Author: Drew DeVault <sir@cmpwn.com>
Date:   Thu, 19 Jul 2018 10:10:38 -0700

Merge pull request #2310 from RyanDwyer/assign-output

Implement assign to output
Diffstat:
Msway/tree/view.c | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/sway/tree/view.c b/sway/tree/view.c @@ -564,7 +564,11 @@ void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) { } focus = seat_get_focus_inactive(seat, workspace); } else { - // TODO: CT_ASSIGN_OUTPUT + // CT_ASSIGN_OUTPUT + struct sway_container *output = output_by_name(criteria->target); + if (output) { + focus = seat_get_focus_inactive(seat, output); + } } } // If we're about to launch the view into the floating container, then