]> git.sur5r.net Git - i3/i3/blob - src/randr.c
Merge branch 'workspace-order-fix' into next
[i3/i3] / src / randr.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2011 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  * For more information on RandR, please see the X.org RandR specification at
11  * http://cgit.freedesktop.org/xorg/proto/randrproto/tree/randrproto.txt
12  * (take your time to read it completely, it answers all questions).
13  *
14  */
15 #include <time.h>
16
17 #include <xcb/randr.h>
18
19 #include "all.h"
20
21 /* While a clean namespace is usually a pretty good thing, we really need
22  * to use shorter names than the whole xcb_randr_* default names. */
23 typedef xcb_randr_get_crtc_info_reply_t crtc_info;
24 typedef xcb_randr_mode_info_t mode_info;
25 typedef xcb_randr_get_screen_resources_current_reply_t resources_reply;
26
27 /* Pointer to the result of the query for primary output */
28 xcb_randr_get_output_primary_reply_t *primary;
29
30 /* Stores all outputs available in your current session. */
31 struct outputs_head outputs = TAILQ_HEAD_INITIALIZER(outputs);
32
33 static bool randr_disabled = false;
34
35 /*
36  * Get a specific output by its internal X11 id. Used by randr_query_outputs
37  * to check if the output is new (only in the first scan) or if we are
38  * re-scanning.
39  *
40  */
41 static Output *get_output_by_id(xcb_randr_output_t id) {
42     Output *output;
43     TAILQ_FOREACH(output, &outputs, outputs)
44         if (output->id == id)
45             return output;
46
47     return NULL;
48 }
49
50 /*
51  * Returns the output with the given name if it is active (!) or NULL.
52  *
53  */
54 Output *get_output_by_name(const char *name) {
55     Output *output;
56     TAILQ_FOREACH(output, &outputs, outputs)
57         if (output->active &&
58             strcasecmp(output->name, name) == 0)
59             return output;
60
61     return NULL;
62 }
63
64 /*
65  * Returns the first output which is active.
66  *
67  */
68 Output *get_first_output() {
69     Output *output;
70
71     TAILQ_FOREACH(output, &outputs, outputs)
72         if (output->active)
73             return output;
74
75     return NULL;
76 }
77
78 /*
79  * Returns the active (!) output which contains the coordinates x, y or NULL
80  * if there is no output which contains these coordinates.
81  *
82  */
83 Output *get_output_containing(int x, int y) {
84     Output *output;
85     TAILQ_FOREACH(output, &outputs, outputs) {
86         if (!output->active)
87             continue;
88         DLOG("comparing x=%d y=%d with x=%d and y=%d width %d height %d\n",
89                         x, y, output->rect.x, output->rect.y, output->rect.width, output->rect.height);
90         if (x >= output->rect.x && x < (output->rect.x + output->rect.width) &&
91             y >= output->rect.y && y < (output->rect.y + output->rect.height))
92             return output;
93     }
94
95     return NULL;
96 }
97
98 /*
99  * Gets the output which is the last one in the given direction, for example
100  * the output on the most bottom when direction == D_DOWN, the output most
101  * right when direction == D_RIGHT and so on.
102  *
103  * This function always returns a output.
104  *
105  */
106 Output *get_output_most(direction_t direction, Output *current) {
107     Output *output, *candidate = NULL;
108     int position = 0;
109     TAILQ_FOREACH(output, &outputs, outputs) {
110         if (!output->active)
111             continue;
112
113         /* Repeated calls of WIN determine the winner of the comparison */
114         #define WIN(variable, condition) \
115             if (variable condition) { \
116                 candidate = output; \
117                 position = variable; \
118             } \
119             break;
120
121         if (((direction == D_UP) || (direction == D_DOWN)) &&
122             (current->rect.x != output->rect.x))
123             continue;
124
125         if (((direction == D_LEFT) || (direction == D_RIGHT)) &&
126             (current->rect.y != output->rect.y))
127             continue;
128
129         switch (direction) {
130             case D_UP:
131                 WIN(output->rect.y, <= position);
132             case D_DOWN:
133                 WIN(output->rect.y, >= position);
134             case D_LEFT:
135                 WIN(output->rect.x, <= position);
136             case D_RIGHT:
137                 WIN(output->rect.x, >= position);
138         }
139     }
140
141     assert(candidate != NULL);
142
143     return candidate;
144 }
145
146 /*
147  * Disables RandR support by creating exactly one output with the size of the
148  * X11 screen.
149  *
150  */
151 void disable_randr(xcb_connection_t *conn) {
152     DLOG("RandR extension unusable, disabling.\n");
153
154     Output *s = scalloc(sizeof(Output));
155
156     s->active = true;
157     s->rect.x = 0;
158     s->rect.y = 0;
159     s->rect.width = root_screen->width_in_pixels;
160     s->rect.height = root_screen->height_in_pixels;
161     s->name = "xroot-0";
162     output_init_con(s);
163     init_ws_for_output(s, output_get_content(s->con));
164
165     TAILQ_INSERT_TAIL(&outputs, s, outputs);
166
167     randr_disabled = true;
168 }
169
170 /*
171  * Initializes a CT_OUTPUT Con (searches existing ones from inplace restart
172  * before) to use for the given Output.
173  *
174  */
175 void output_init_con(Output *output) {
176     Con *con = NULL, *current;
177     bool reused = false;
178
179     DLOG("init_con for output %s\n", output->name);
180
181     /* Search for a Con with that name directly below the root node. There
182      * might be one from a restored layout. */
183     TAILQ_FOREACH(current, &(croot->nodes_head), nodes) {
184         if (strcmp(current->name, output->name) != 0)
185             continue;
186
187         con = current;
188         reused = true;
189         DLOG("Using existing con %p / %s\n", con, con->name);
190         break;
191     }
192
193     if (con == NULL) {
194         con = con_new(croot, NULL);
195         FREE(con->name);
196         con->name = sstrdup(output->name);
197         con->type = CT_OUTPUT;
198         con->layout = L_OUTPUT;
199         con_fix_percent(croot);
200     }
201     con->rect = output->rect;
202     output->con = con;
203
204     char *name;
205     asprintf(&name, "[i3 con] output %s", con->name);
206     x_set_name(con, name);
207     FREE(name);
208
209     if (reused) {
210         DLOG("Not adding workspace, this was a reused con\n");
211         return;
212     }
213
214     DLOG("Changing layout, adding top/bottom dockarea\n");
215     Con *topdock = con_new(NULL, NULL);
216     topdock->type = CT_DOCKAREA;
217     topdock->layout = L_DOCKAREA;
218     topdock->orientation = VERT;
219     /* this container swallows dock clients */
220     Match *match = scalloc(sizeof(Match));
221     match_init(match);
222     match->dock = M_DOCK_TOP;
223     match->insert_where = M_BELOW;
224     TAILQ_INSERT_TAIL(&(topdock->swallow_head), match, matches);
225
226     FREE(topdock->name);
227     topdock->name = sstrdup("topdock");
228
229     asprintf(&name, "[i3 con] top dockarea %s", con->name);
230     x_set_name(topdock, name);
231     FREE(name);
232     DLOG("attaching\n");
233     con_attach(topdock, con, false);
234
235     /* content container */
236
237     DLOG("adding main content container\n");
238     Con *content = con_new(NULL, NULL);
239     content->type = CT_CON;
240     FREE(content->name);
241     content->name = sstrdup("content");
242
243     asprintf(&name, "[i3 con] content %s", con->name);
244     x_set_name(content, name);
245     FREE(name);
246     con_attach(content, con, false);
247
248     /* bottom dock container */
249     Con *bottomdock = con_new(NULL, NULL);
250     bottomdock->type = CT_DOCKAREA;
251     bottomdock->layout = L_DOCKAREA;
252     bottomdock->orientation = VERT;
253     /* this container swallows dock clients */
254     match = scalloc(sizeof(Match));
255     match_init(match);
256     match->dock = M_DOCK_BOTTOM;
257     match->insert_where = M_BELOW;
258     TAILQ_INSERT_TAIL(&(bottomdock->swallow_head), match, matches);
259
260     FREE(bottomdock->name);
261     bottomdock->name = sstrdup("bottomdock");
262
263     asprintf(&name, "[i3 con] bottom dockarea %s", con->name);
264     x_set_name(bottomdock, name);
265     FREE(name);
266     DLOG("attaching\n");
267     con_attach(bottomdock, con, false);
268 }
269
270 /*
271  * Initializes at least one workspace for this output, trying the following
272  * steps until there is at least one workspace:
273  *
274  * • Move existing workspaces, which are assigned to be on the given output, to
275  *   the output.
276  * • Create the first assigned workspace for this output.
277  * • Create the first unused workspace.
278  *
279  */
280 void init_ws_for_output(Output *output, Con *content) {
281     char *name;
282
283     /* go through all assignments and move the existing workspaces to this output */
284     struct Workspace_Assignment *assignment;
285     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
286         if (strcmp(assignment->output, output->name) != 0)
287             continue;
288
289         /* check if this workspace actually exists */
290         Con *workspace = NULL, *out;
291         TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
292             GREP_FIRST(workspace, output_get_content(out),
293                        !strcasecmp(child->name, assignment->name));
294         if (workspace == NULL)
295             continue;
296
297         /* check that this workspace is not already attached (that means the
298          * user configured this assignment twice) */
299         Con *workspace_out = con_get_output(workspace);
300         if (workspace_out == output->con) {
301             LOG("Workspace \"%s\" assigned to output \"%s\", but it is already "
302                 "there. Do you have two assignment directives for the same "
303                 "workspace in your configuration file?\n",
304                 workspace->name, output->name);
305             continue;
306         }
307
308         /* if so, move it over */
309         LOG("Moving workspace \"%s\" from output \"%s\" to \"%s\" due to assignment\n",
310             workspace->name, workspace_out->name, output->name);
311
312         /* if the workspace is currently visible on that output, we need to
313          * switch to a different workspace - otherwise the output would end up
314          * with no active workspace */
315         bool visible = workspace_is_visible(workspace);
316         Con *previous = NULL;
317         if (visible && (previous = TAILQ_NEXT(workspace, focused))) {
318             LOG("Switching to previously used workspace \"%s\" on output \"%s\"\n",
319                 previous->name, workspace_out->name);
320             workspace_show(previous->name);
321         }
322
323         con_detach(workspace);
324         con_attach(workspace, content, false);
325
326         /* In case the workspace we just moved was visible but there was no
327          * other workspace to switch to, we need to initialize the source
328          * output aswell */
329         if (visible && previous == NULL) {
330             LOG("There is no workspace left on \"%s\", re-initializing\n",
331                 workspace_out->name);
332             init_ws_for_output(get_output_by_name(workspace_out->name),
333                                output_get_content(workspace_out));
334             DLOG("Done re-initializing, continuing with \"%s\"\n", output->name);
335         }
336     }
337
338     /* if a workspace exists, we are done now */
339     if (!TAILQ_EMPTY(&(content->nodes_head))) {
340         /* ensure that one of the workspaces is actually visible (in fullscreen
341          * mode), if they were invisible before, this might not be the case. */
342         Con *visible = NULL;
343         GREP_FIRST(visible, content, child->fullscreen_mode == CF_OUTPUT);
344         if (!visible) {
345             visible = TAILQ_FIRST(&(content->nodes_head));
346             focused = content;
347             workspace_show(visible->name);
348         }
349         return;
350     }
351
352     /* otherwise, we create the first assigned ws for this output */
353     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
354         if (strcmp(assignment->output, output->name) != 0)
355             continue;
356
357         LOG("Initializing first assigned workspace \"%s\" for output \"%s\"\n",
358             assignment->name, assignment->output);
359         focused = content;
360         workspace_show(assignment->name);
361         return;
362     }
363
364     /* if there is still no workspace, we create the first free workspace */
365     DLOG("Now adding a workspace\n");
366
367     /* add a workspace to this output */
368     Con *out, *current;
369     bool exists = true;
370     Con *ws = con_new(NULL, NULL);
371     ws->type = CT_WORKSPACE;
372
373     /* try the configured workspace bindings first to find a free name */
374     Binding *bind;
375     TAILQ_FOREACH(bind, bindings, bindings) {
376         DLOG("binding with command %s\n", bind->command);
377         if (strlen(bind->command) < strlen("workspace ") ||
378             strncasecmp(bind->command, "workspace", strlen("workspace")) != 0)
379             continue;
380         DLOG("relevant command = %s\n", bind->command);
381         char *target = bind->command + strlen("workspace ");
382         if (*target == '"')
383             target++;
384         FREE(ws->name);
385         ws->name = strdup(target);
386         if (ws->name[strlen(ws->name)-1] == '"')
387             ws->name[strlen(ws->name)-1] = '\0';
388         DLOG("trying name *%s*\n", ws->name);
389
390         current = NULL;
391         TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
392             GREP_FIRST(current, output_get_content(out), !strcasecmp(child->name, ws->name));
393
394         exists = (current != NULL);
395         if (!exists)
396             break;
397     }
398
399     /* get the next unused workspace number */
400     DLOG("Getting next unused workspace\n");
401     int c = 0;
402     while (exists) {
403         c++;
404
405         FREE(ws->name);
406         asprintf(&(ws->name), "%d", c);
407
408         current = NULL;
409         TAILQ_FOREACH(out, &(croot->nodes_head), nodes)
410             GREP_FIRST(current, output_get_content(out), !strcasecmp(child->name, ws->name));
411         exists = (current != NULL);
412
413         DLOG("result for ws %s / %d: exists = %d\n", ws->name, c, exists);
414     }
415     ws->num = c;
416     con_attach(ws, content, false);
417
418     asprintf(&name, "[i3 con] workspace %s", ws->name);
419     x_set_name(ws, name);
420     free(name);
421
422     ws->fullscreen_mode = CF_OUTPUT;
423
424     /* If default_orientation is set to NO_ORIENTATION we determine
425      * orientation depending on output resolution. */
426     if (config.default_orientation == NO_ORIENTATION) {
427         ws->orientation = (output->rect.height > output->rect.width) ? VERT : HORIZ;
428         DLOG("Auto orientation. Workspace size set to (%d,%d), setting orientation to %d.\n",
429              output->rect.width, output->rect.height, ws->orientation);
430     } else {
431         ws->orientation = config.default_orientation;
432     }
433
434
435     /* TODO: Set focus in main.c */
436     con_focus(ws);
437 }
438
439 /*
440  * This function needs to be called when changing the mode of an output when
441  * it already has some workspaces (or a bar window) assigned.
442  *
443  * It reconfigures the bar window for the new mode, copies the new rect into
444  * each workspace on this output and forces all windows on the affected
445  * workspaces to be reconfigured.
446  *
447  * It is necessary to call render_layout() afterwards.
448  *
449  */
450 static void output_change_mode(xcb_connection_t *conn, Output *output) {
451     //i3Font *font = load_font(conn, config.font);
452
453     DLOG("Output mode changed, updating rect\n");
454     assert(output->con != NULL);
455     output->con->rect = output->rect;
456
457     Con *content, *workspace, *child;
458
459     /* Point content to the container of the workspaces */
460     content = output_get_content(output->con);
461
462     /* If default_orientation is NO_ORIENTATION, we change the orientation of
463      * the workspaces and their childs depending on output resolution. This is
464      * only done for workspaces with maximum one child. */
465     if (config.default_orientation == NO_ORIENTATION) {
466         TAILQ_FOREACH(workspace, &(content->nodes_head), nodes) {
467             /* Workspaces with more than one child are left untouched because
468              * we do not want to change an existing layout. */
469             if (con_num_children(workspace) > 1)
470                 continue;
471
472             workspace->orientation = (output->rect.height > output->rect.width) ? VERT : HORIZ;
473             DLOG("Setting workspace [%d,%s]'s orientation to %d.\n", workspace->num, workspace->name, workspace->orientation);
474             if ((child = TAILQ_FIRST(&(workspace->nodes_head)))) {
475                 child->orientation = workspace->orientation;
476                 DLOG("Setting child [%d,%s]'s orientation to %d.\n", child->num, child->name, child->orientation);
477             }
478         }
479     }
480 }
481
482 /*
483  * Gets called by randr_query_outputs() for each output. The function adds new
484  * outputs to the list of outputs, checks if the mode of existing outputs has
485  * been changed or if an existing output has been disabled. It will then change
486  * either the "changed" or the "to_be_deleted" flag of the output, if
487  * appropriate.
488  *
489  */
490 static void handle_output(xcb_connection_t *conn, xcb_randr_output_t id,
491                           xcb_randr_get_output_info_reply_t *output,
492                           xcb_timestamp_t cts, resources_reply *res) {
493     /* each CRT controller has a position in which we are interested in */
494     crtc_info *crtc;
495
496     Output *new = get_output_by_id(id);
497     bool existing = (new != NULL);
498     if (!existing)
499         new = scalloc(sizeof(Output));
500     new->id = id;
501     new->primary = (primary && primary->output == id);
502     FREE(new->name);
503     asprintf(&new->name, "%.*s",
504             xcb_randr_get_output_info_name_length(output),
505             xcb_randr_get_output_info_name(output));
506
507     DLOG("found output with name %s\n", new->name);
508
509     /* Even if no CRTC is used at the moment, we store the output so that
510      * we do not need to change the list ever again (we only update the
511      * position/size) */
512     if (output->crtc == XCB_NONE) {
513         if (!existing) {
514             if (new->primary)
515                 TAILQ_INSERT_HEAD(&outputs, new, outputs);
516             else TAILQ_INSERT_TAIL(&outputs, new, outputs);
517         } else if (new->active)
518             new->to_be_disabled = true;
519         return;
520     }
521
522     xcb_randr_get_crtc_info_cookie_t icookie;
523     icookie = xcb_randr_get_crtc_info(conn, output->crtc, cts);
524     if ((crtc = xcb_randr_get_crtc_info_reply(conn, icookie, NULL)) == NULL) {
525         DLOG("Skipping output %s: could not get CRTC (%p)\n",
526              new->name, crtc);
527         free(new);
528         return;
529     }
530
531     bool updated = update_if_necessary(&(new->rect.x), crtc->x) |
532                    update_if_necessary(&(new->rect.y), crtc->y) |
533                    update_if_necessary(&(new->rect.width), crtc->width) |
534                    update_if_necessary(&(new->rect.height), crtc->height);
535     free(crtc);
536     new->active = (new->rect.width != 0 && new->rect.height != 0);
537     if (!new->active) {
538         DLOG("width/height 0/0, disabling output\n");
539         return;
540     }
541
542     DLOG("mode: %dx%d+%d+%d\n", new->rect.width, new->rect.height,
543                                 new->rect.x, new->rect.y);
544
545     /* If we don’t need to change an existing output or if the output
546      * does not exist in the first place, the case is simple: we either
547      * need to insert the new output or we are done. */
548     if (!updated || !existing) {
549         if (!existing) {
550             if (new->primary)
551                 TAILQ_INSERT_HEAD(&outputs, new, outputs);
552             else TAILQ_INSERT_TAIL(&outputs, new, outputs);
553         }
554         return;
555     }
556
557     new->changed = true;
558 }
559
560 /*
561  * (Re-)queries the outputs via RandR and stores them in the list of outputs.
562  *
563  */
564 void randr_query_outputs() {
565     Output *output, *other, *first;
566     xcb_randr_get_output_primary_cookie_t pcookie;
567     xcb_randr_get_screen_resources_current_cookie_t rcookie;
568     resources_reply *res;
569
570     /* timestamp of the configuration so that we get consistent replies to all
571      * requests (if the configuration changes between our different calls) */
572     xcb_timestamp_t cts;
573
574     /* an output is VGA-1, LVDS-1, etc. (usually physical video outputs) */
575     xcb_randr_output_t *randr_outputs;
576
577     if (randr_disabled)
578         return;
579
580     /* Get screen resources (primary output, crtcs, outputs, modes) */
581     rcookie = xcb_randr_get_screen_resources_current(conn, root);
582     pcookie = xcb_randr_get_output_primary(conn, root);
583
584     if ((primary = xcb_randr_get_output_primary_reply(conn, pcookie, NULL)) == NULL)
585         ELOG("Could not get RandR primary output\n");
586     else DLOG("primary output is %08x\n", primary->output);
587     if ((res = xcb_randr_get_screen_resources_current_reply(conn, rcookie, NULL)) == NULL) {
588         disable_randr(conn);
589         return;
590     }
591     cts = res->config_timestamp;
592
593     int len = xcb_randr_get_screen_resources_current_outputs_length(res);
594     randr_outputs = xcb_randr_get_screen_resources_current_outputs(res);
595
596     /* Request information for each output */
597     xcb_randr_get_output_info_cookie_t ocookie[len];
598     for (int i = 0; i < len; i++)
599         ocookie[i] = xcb_randr_get_output_info(conn, randr_outputs[i], cts);
600
601     /* Loop through all outputs available for this X11 screen */
602     for (int i = 0; i < len; i++) {
603         xcb_randr_get_output_info_reply_t *output;
604
605         if ((output = xcb_randr_get_output_info_reply(conn, ocookie[i], NULL)) == NULL)
606             continue;
607
608         handle_output(conn, randr_outputs[i], output, cts, res);
609         free(output);
610     }
611
612     /* Check for clones, disable the clones and reduce the mode to the
613      * lowest common mode */
614     TAILQ_FOREACH(output, &outputs, outputs) {
615         if (!output->active || output->to_be_disabled)
616             continue;
617         DLOG("output %p / %s, position (%d, %d), checking for clones\n",
618                 output, output->name, output->rect.x, output->rect.y);
619
620         for (other = output;
621              other != TAILQ_END(&outputs);
622              other = TAILQ_NEXT(other, outputs)) {
623             if (other == output || !other->active || other->to_be_disabled)
624                 continue;
625
626             if (other->rect.x != output->rect.x ||
627                 other->rect.y != output->rect.y)
628                 continue;
629
630             DLOG("output %p has the same position, his mode = %d x %d\n",
631                             other, other->rect.width, other->rect.height);
632             uint32_t width = min(other->rect.width, output->rect.width);
633             uint32_t height = min(other->rect.height, output->rect.height);
634
635             if (update_if_necessary(&(output->rect.width), width) |
636                 update_if_necessary(&(output->rect.height), height))
637                 output->changed = true;
638
639             update_if_necessary(&(other->rect.width), width);
640             update_if_necessary(&(other->rect.height), height);
641
642             DLOG("disabling output %p (%s)\n", other, other->name);
643             other->to_be_disabled = true;
644
645             DLOG("new output mode %d x %d, other mode %d x %d\n",
646                             output->rect.width, output->rect.height,
647                             other->rect.width, other->rect.height);
648         }
649     }
650
651     /* Ensure that all outputs which are active also have a con. This is
652      * necessary because in the next step, a clone might get disabled. Example:
653      * LVDS1 active, VGA1 gets activated as a clone of LVDS1 (has no con).
654      * LVDS1 gets disabled. */
655     TAILQ_FOREACH(output, &outputs, outputs) {
656         if (output->active && output->con == NULL) {
657             DLOG("Need to initialize a Con for output %s\n", output->name);
658             output_init_con(output);
659             output->changed = false;
660         }
661     }
662
663     /* Handle outputs which have a new mode or are disabled now (either
664      * because the user disabled them or because they are clones) */
665     TAILQ_FOREACH(output, &outputs, outputs) {
666         if (output->to_be_disabled) {
667             output->active = false;
668             DLOG("Output %s disabled, re-assigning workspaces/docks\n", output->name);
669
670             if ((first = get_first_output()) == NULL)
671                 die("No usable outputs available\n");
672
673             /* TODO: refactor the following code into a nice function. maybe
674              * use an on_destroy callback which is implement differently for
675              * different container types (CT_CONTENT vs. CT_DOCKAREA)? */
676             Con *first_content = output_get_content(first->con);
677
678             if (output->con != NULL) {
679                 /* We need to move the workspaces from the disappearing output to the first output */
680                 /* 1: Get the con to focus next, if the disappearing ws is focused */
681                 Con *next = NULL;
682                 if (TAILQ_FIRST(&(croot->focus_head)) == output->con) {
683                     DLOG("This output (%p) was focused! Getting next\n", output->con);
684                     next = con_next_focused(output->con);
685                     DLOG("next = %p\n", next);
686                 }
687
688                 /* 2: iterate through workspaces and re-assign them */
689                 Con *current;
690                 Con *old_content = output_get_content(output->con);
691                 while (!TAILQ_EMPTY(&(old_content->nodes_head))) {
692                     current = TAILQ_FIRST(&(old_content->nodes_head));
693                     DLOG("Detaching current = %p / %s\n", current, current->name);
694                     con_detach(current);
695                     DLOG("Re-attaching current = %p / %s\n", current, current->name);
696                     con_attach(current, first_content, false);
697                     DLOG("Done, next\n");
698                 }
699                 DLOG("re-attached all workspaces\n");
700
701                 if (next) {
702                     DLOG("now focusing next = %p\n", next);
703                     con_focus(next);
704                 }
705
706                 /* 3: move the dock clients to the first output */
707                 Con *child;
708                 TAILQ_FOREACH(child, &(output->con->nodes_head), nodes) {
709                     if (child->type != CT_DOCKAREA)
710                         continue;
711                     DLOG("Handling dock con %p\n", child);
712                     Con *dock;
713                     while (!TAILQ_EMPTY(&(child->nodes_head))) {
714                         dock = TAILQ_FIRST(&(child->nodes_head));
715                         Con *nc;
716                         Match *match;
717                         nc = con_for_window(first->con, dock->window, &match);
718                         DLOG("Moving dock client %p to nc %p\n", dock, nc);
719                         con_detach(dock);
720                         DLOG("Re-attaching\n");
721                         con_attach(dock, nc, false);
722                         DLOG("Done\n");
723                     }
724                 }
725
726                 DLOG("destroying disappearing con %p\n", output->con);
727                 tree_close(output->con, DONT_KILL_WINDOW, true);
728                 DLOG("Done. Should be fine now\n");
729                 output->con = NULL;
730             }
731
732             output->to_be_disabled = false;
733             output->changed = false;
734         }
735
736         if (output->changed) {
737             output_change_mode(conn, output);
738             output->changed = false;
739         }
740     }
741
742     if (TAILQ_EMPTY(&outputs)) {
743         ELOG("No outputs found via RandR, disabling\n");
744         disable_randr(conn);
745     }
746
747     ewmh_update_workarea();
748
749     /* Just go through each active output and assign one workspace */
750     TAILQ_FOREACH(output, &outputs, outputs) {
751         if (!output->active)
752             continue;
753         Con *content = output_get_content(output->con);
754         if (!TAILQ_EMPTY(&(content->nodes_head)))
755             continue;
756         DLOG("Should add ws for output %s\n", output->name);
757         init_ws_for_output(output, content);
758     }
759
760     /* Focus the primary screen, if possible */
761     TAILQ_FOREACH(output, &outputs, outputs) {
762         if (!output->primary || !output->con)
763             continue;
764
765         DLOG("Focusing primary output %s\n", output->name);
766         con_focus(con_descend_focused(output->con));
767     }
768
769     /* render_layout flushes */
770     tree_render();
771
772     FREE(res);
773     FREE(primary);
774 }
775
776 /*
777  * We have just established a connection to the X server and need the initial
778  * XRandR information to setup workspaces for each screen.
779  *
780  */
781 void randr_init(int *event_base) {
782     const xcb_query_extension_reply_t *extreply;
783
784     extreply = xcb_get_extension_data(conn, &xcb_randr_id);
785     if (!extreply->present)
786         disable_randr(conn);
787     else randr_query_outputs();
788
789     if (event_base != NULL)
790         *event_base = extreply->first_event;
791
792     xcb_randr_select_input(conn, root,
793             XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE |
794             XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE |
795             XCB_RANDR_NOTIFY_MASK_CRTC_CHANGE |
796             XCB_RANDR_NOTIFY_MASK_OUTPUT_PROPERTY);
797
798     xcb_flush(conn);
799 }