From 8b4ad8c6bdc73d8950b9ac67316811377acbf7b3 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 19 Mar 2012 21:41:45 +0100 Subject: [PATCH] Fix i3bar when using multiple displays (Thanks brimstone) --- i3bar/src/xcb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c index 29ffe1c4..afcfaa39 100644 --- a/i3bar/src/xcb.c +++ b/i3bar/src/xcb.c @@ -10,6 +10,7 @@ #include #include #include +#include #ifdef XCB_COMPAT #include "xcb_compat.h" @@ -784,7 +785,7 @@ char *init_xcb_early() { #define ATOM_DO(name) atom_cookies[name] = xcb_intern_atom(xcb_connection, 0, strlen(#name), #name); #include "xcb_atoms.def" - xcb_screen = xcb_setup_roots_iterator(xcb_get_setup(xcb_connection)).data; + xcb_screen = xcb_aux_get_screen(xcb_connection, screen); xcb_root = xcb_screen->root; /* We draw the statusline to a seperate pixmap, because it looks the same on all bars and -- 2.39.5