From b00feb25ea324158ba98ba18a0d694e5318682ba Mon Sep 17 00:00:00 2001 From: Zandr Martin Date: Fri, 10 Jun 2016 07:12:25 -0500 Subject: trigger bg change on config reload --- sway/commands.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sway/commands.c b/sway/commands.c index eab4a1c1..07e7e53d 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -1692,9 +1692,13 @@ static struct cmd_results *cmd_output(int argc, char **argv) { swayc_t *cont = NULL; for (int i = 0; i < root_container.children->length; ++i) { cont = root_container.children->items[i]; - if (cont->name && strcmp(cont->name, output->name) == 0) { + if (cont->name && ((strcmp(cont->name, output->name) == 0) || (strcmp(output->name, "*") == 0))) { apply_output_config(output, cont); - break; + + if (strcmp(output->name, "*") != 0) { + // stop looking if the output config isn't applicable to all outputs + break; + } } } } -- cgit v1.2.3-54-g00ecf