diff options
-rw-r--r-- | include/container.h | 3 | ||||
-rw-r--r-- | sway/container.c | 14 |
2 files changed, 17 insertions, 0 deletions
diff --git a/include/container.h b/include/container.h index cb18de49..7b0bdb78 100644 --- a/include/container.h +++ b/include/container.h @@ -75,7 +75,10 @@ struct sway_container { bool is_floating; bool is_focused; + // Attributes that mostly views have. char *name; + char *class; + char *app_id; int gaps; diff --git a/sway/container.c b/sway/container.c index bbe2e7b0..1634cce0 100644 --- a/sway/container.c +++ b/sway/container.c @@ -50,6 +50,12 @@ static void free_swayc(swayc_t *cont) { if (cont->name) { free(cont->name); } + if (cont->class) { + free(cont->class); + } + if (cont->app_id) { + free(cont->app_id); + } free(cont); } @@ -214,6 +220,10 @@ swayc_t *new_view(swayc_t *sibling, wlc_handle handle) { // Setup values view->handle = handle; view->name = title ? strdup(title) : NULL; + const char *class = wlc_view_get_class(handle); + view->class = class ? strdup(class) : NULL; + const char *app_id = wlc_view_get_app_id(handle); + view->app_id = app_id ? strdup(app_id) : NULL; view->visible = true; view->is_focused = true; // Setup geometry @@ -246,6 +256,10 @@ swayc_t *new_floating_view(wlc_handle handle) { // Setup values view->handle = handle; view->name = title ? strdup(title) : NULL; + const char *class = wlc_view_get_class(handle); + view->class = class ? strdup(class) : NULL; + const char *app_id = wlc_view_get_app_id(handle); + view->app_id = app_id ? strdup(app_id) : NULL; view->visible = true; // Set the geometry of the floating view |