sway

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

commit 9510a20fcda00eecf077cc5cb06f5d47d87bccee
parent a3ae67af4e47467b134b876e42a148b1895e7283
Author: Tony Crisci <tony@dubstepdish.com>
Date:   Sat, 17 Feb 2018 13:32:04 -0500

arrange windows after output add

Diffstat:
Msway/desktop/output.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/sway/desktop/output.c b/sway/desktop/output.c @@ -286,6 +286,8 @@ void handle_new_output(struct wl_listener *listener, void *data) { wl_signal_add(&wlr_output->events.destroy, &output->output_destroy); output->output_destroy.notify = handle_output_destroy; + + arrange_windows(&root_container, -1, -1); } void handle_output_destroy(struct wl_listener *listener, void *data) {