diff options
author | Stivvo <stivvo01@gmail.com> | 2020-10-24 22:51:26 +0200 |
---|---|---|
committer | Stivvo <stivvo01@gmail.com> | 2020-10-24 22:51:26 +0200 |
commit | db950242115338d672bd5a83c0f35afd9cbae4de (patch) | |
tree | 171d9e97ae4ad8a4af239d99015843665738a7ec /dwl.c | |
parent | b30e18fa204bab2a993ce4f0250728f01accc04f (diff) | |
parent | 7017a0c64d3a58635cb5e088fab890c4efa02737 (diff) |
Merge branch 'handleUnplug' into output-management
Diffstat (limited to 'dwl.c')
-rw-r--r-- | dwl.c | 33 |
1 files changed, 29 insertions, 4 deletions
@@ -694,12 +694,28 @@ void cleanupmon(struct wl_listener *listener, void *data) { struct wlr_output *wlr_output = data; - Monitor *m = wlr_output->data; + Monitor *m = wlr_output->data, *newmon; + Client *c; wl_list_remove(&m->destroy.link); - free(m); + wl_list_remove(&m->frame.link); + wl_list_remove(&m->link); + wlr_output_layout_remove(output_layout, m->wlr_output); updatemons(); + + wl_list_for_each(newmon, &mons, link) { + wl_list_for_each(c, &clients, link) { + if (c->isfloating && c->geom.x > m->m.width) { + resize(c, c->geom.x - m->w.width, c->geom.y, + c->geom.width, c->geom.height, 0); + } + if (c->mon == m) + setmon(c, newmon, c->tags); + } + break; + } + free(m); } void @@ -821,13 +837,22 @@ createmon(struct wl_listener *listener, void *data) * output (such as DPI, scale factor, manufacturer, etc). */ wlr_output_layout_add_auto(output_layout, wlr_output); - sgeom = *wlr_output_layout_get_box(output_layout, NULL); for (size_t i = 0; i < nlayers; ++i) wl_list_init(&m->layers[i]); /* When adding monitors, the geometries of all monitors must be updated */ updatemons(); + wl_list_for_each(m, &mons, link) { + /* the first monitor in the list is the most recently added */ + Client *c; + wl_list_for_each(c, &clients, link) { + if (c->isfloating) + resize(c, c->geom.x + m->w.width, c->geom.y, + c->geom.width, c->geom.height, 0); + } + return; + } } void @@ -2195,7 +2220,7 @@ updatemons() struct wlr_output_configuration_v1 *config = wlr_output_configuration_v1_create(); Monitor *m; - + sgeom = *wlr_output_layout_get_box(output_layout, NULL); wl_list_for_each(m, &mons, link) { struct wlr_output_configuration_head_v1 *config_head = wlr_output_configuration_head_v1_create(config, m->wlr_output); |