backend/wayland: print output name in window title

This commit is contained in:
emersion 2018-05-15 00:16:18 +01:00
parent 1e5b5d15a6
commit 198ad27bd5
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 5 additions and 1 deletions

View File

@ -284,8 +284,12 @@ struct wlr_output *wlr_wl_output_create(struct wlr_backend *_backend) {
goto error;
}
char title[32];
if (snprintf(title, sizeof(title), "wlroots - %s", wlr_output->name)) {
zxdg_toplevel_v6_set_title(output->xdg_toplevel, title);
}
zxdg_toplevel_v6_set_app_id(output->xdg_toplevel, "wlroots");
zxdg_toplevel_v6_set_title(output->xdg_toplevel, "wlroots");
zxdg_surface_v6_add_listener(output->xdg_surface,
&xdg_surface_listener, output);
zxdg_toplevel_v6_add_listener(output->xdg_toplevel,