diff options
author | Stivvo <stivvo01@gmail.com> | 2020-10-31 13:19:31 +0100 |
---|---|---|
committer | Stivvo <stivvo01@gmail.com> | 2020-10-31 13:19:31 +0100 |
commit | 9f0b16868a082175508c0c747054f324595d5b67 (patch) | |
tree | b2ab60f384afce772fbacea45af03e0f52d47ec5 /dwl.c | |
parent | 5622dbdaf3eaa62183d81e9b545a92abcc1a704d (diff) |
Back to closemon() with one parameter
With the recent changes in output-management, the extra argument in
closemon() would be needed only when unplugging the monitor, so it isn't
worth it anymore. Also now is more efficient.
Diffstat (limited to 'dwl.c')
-rw-r--r-- | dwl.c | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -204,7 +204,7 @@ static void chvt(const Arg *arg); static void cleanup(void); static void cleanupkeyboard(struct wl_listener *listener, void *data); static void cleanupmon(struct wl_listener *listener, void *data); -static void closemon(Monitor *m, Monitor *newmon); +static void closemon(Monitor *m); static void commitlayersurfacenotify(struct wl_listener *listener, void *data); static void commitnotify(struct wl_listener *listener, void *data); static void createkeyboard(struct wlr_input_device *device); @@ -688,7 +688,7 @@ void cleanupmon(struct wl_listener *listener, void *data) { struct wlr_output *wlr_output = data; - Monitor *m = wlr_output->data, *newmon; + Monitor *m = wlr_output->data; wl_list_remove(&m->destroy.link); wl_list_remove(&m->frame.link); @@ -696,24 +696,26 @@ cleanupmon(struct wl_listener *listener, void *data) wlr_output_layout_remove(output_layout, m->wlr_output); updatemons(); - closemon(m, wl_container_of(mons.next, newmon, link)); + + selmon = wl_container_of(mons.next, selmon, link); + focusclient(selclient(), focustop(selmon), 1); + closemon(m); + free(m); } void -closemon(Monitor *m, Monitor *newmon) +closemon(Monitor *m) { - // move all the clients on a closed monitor to another one + // move closed monitor's clients to the focused one Client *c; - selmon = newmon; - focusclient(selclient(), focustop(newmon), 1); 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); + setmon(c, selmon, c->tags); } } |