From e64e61779e70c80875e3a8e00ad041265f50787d Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sun, 16 Aug 2015 13:07:43 -0400 Subject: Set C_OUTPUT name to name from wlc --- sway/container.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sway/container.c b/sway/container.c index 98941b2c..1f9b250f 100644 --- a/sway/container.c +++ b/sway/container.c @@ -45,11 +45,15 @@ static void add_output_widths(swayc_t *container, void *_width) { swayc_t *new_output(wlc_handle handle) { sway_log(L_DEBUG, "Added output %d", handle); const struct wlc_size* size = wlc_output_get_resolution(handle); + const char *name = wlc_output_get_name(handle); swayc_t *output = new_swayc(C_OUTPUT); output->width = size->w; output->height = size->h; output->handle = handle; + if (name) { + output->name = strdup(name); + } add_child(&root_container, output); -- cgit v1.2.3-54-g00ecf