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