From 78891c1c62d340e37ffef81046d56e42df28d4f5 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 22 Apr 2012 20:51:15 +0200 Subject: [PATCH] i3bar: when tray_output == primary and there is no primary output, fall back to the first available output --- i3bar/src/xcb.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/i3bar/src/xcb.c b/i3bar/src/xcb.c index 9907665e..67572480 100644 --- a/i3bar/src/xcb.c +++ b/i3bar/src/xcb.c @@ -458,6 +458,18 @@ static void handle_client_message(xcb_client_message_event_t* event) { DLOG("using output %s\n", walk->name); output = walk; + break; + } + /* In case of tray_output == primary and there is no primary output + * configured, we fall back to the first available output. */ + if (output == NULL && strcasecmp("primary", config.tray_output) == 0) { + SLIST_FOREACH(walk, outputs, slist) { + if (!walk->active) + continue; + DLOG("Falling back to output %s because no primary output is configured\n", walk->name); + output = walk; + break; + } } if (output == NULL) { ELOG("No output found\n"); -- 2.39.5