aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/wayland/output.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/backend/wayland/output.c b/backend/wayland/output.c
index f1eb73fd..a515374b 100644
--- a/backend/wayland/output.c
+++ b/backend/wayland/output.c
@@ -365,3 +365,8 @@ error:
wlr_output_destroy(&output->wlr_output);
return NULL;
}
+
+void wlr_wl_output_set_title(struct wlr_output *output, const char *title) {
+ struct wlr_wl_output *wl_output = get_wl_output_from_output(output);
+ xdg_toplevel_set_title(wl_output->xdg_toplevel, title);
+}