sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 5d250f3da61833d08b44464c29df41e3d4234f66
parent 31a7119c3db722b2cea41bafa9e7b9cc37c9ba5e
Author: D.B <thejan.2009@gmail.com>
Date:   Mon, 18 Jul 2016 12:35:50 +0200

Construct titles of nested tabbed/stacked containers from app_id instead of title

Diffstat:
Msway/border.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/border.c b/sway/border.c @@ -234,7 +234,7 @@ static char *generate_container_title(swayc_t *container) { for (i = 0; i < container->children->length; ++i) { prev_name = name; swayc_t* child = container->children->items[i]; - const char *title = child->name; + const char *title = child->app_id; if (child->type == C_CONTAINER) { title = generate_container_title(child); }