From 60c204a09b3b4ae999eca5e844858a0f34135723 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 16 Dec 2015 19:29:47 -0500 Subject: [PATCH] Invoke swaybar when an output matches a bar config --- sway/commands.c | 4 ++++ sway/config.c | 46 +++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 49 insertions(+), 1 deletion(-) diff --git a/sway/commands.c b/sway/commands.c index 4e9630ef..b40cdb6a 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -1785,6 +1785,10 @@ static struct cmd_results *bar_cmd_output(int argc, char **argv) { const char *output = argv[0]; list_t *outputs = config->current_bar->outputs; + if (!outputs) { + outputs = create_list(); + config->current_bar->outputs = outputs; + } int i; int add_output = 1; diff --git a/sway/config.c b/sway/config.c index 7222b7a2..9b441223 100644 --- a/sway/config.c +++ b/sway/config.c @@ -424,6 +424,50 @@ void apply_output_config(struct output_config *oc, swayc_t *output) { execvp(cmd[0], cmd); } } + + // Check for a bar + struct bar_config *bar = NULL; + int i; + for (i = 0; i < config->bars->length; ++i) { + bar = config->bars->items[i]; + bool apply = false; + if (bar->outputs) { + int j; + for (j = 0; j < bar->outputs->length; ++j) { + char *o = bar->outputs->items[j]; + if (strcmp(o, "*") || strcasecmp(o, output->name)) { + apply = true; + break; + } + } + } else { + apply = true; + } + if (apply) { + break; + } else { + bar = NULL; + } + } + if (bar) { + sway_log(L_DEBUG, "Invoking swaybar for output %s and bar %s", output->name, bar->id); + + size_t bufsize = 4; + char output_id[bufsize]; + snprintf(output_id, bufsize, "%d", i); + output_id[bufsize-1] = 0; + + char *const cmd[] = { + "./bin/swaybar", + "-b", + bar->id, + output_id, + NULL, + }; + if (fork() == 0) { + execvp(cmd[0], cmd); + } + } } char *do_var_replacement(char *str) { @@ -561,7 +605,7 @@ struct bar_config *default_bar_config(void) { bar->mode = strdup("dock"); bar->hidden_state = strdup("hide"); bar->modifier = 0; - bar->outputs = create_list(); + bar->outputs = NULL; bar->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM; bar->bindings = create_list(); bar->status_command = strdup("while :; do date +'%Y-%m-%d %l:%M:%S %p' && sleep 1; done");