diff options
author | Jente Hidskes <hjdskes@gmail.com> | 2019-01-20 16:21:04 +0100 |
---|---|---|
committer | Jente Hidskes <hjdskes@gmail.com> | 2019-01-20 16:21:04 +0100 |
commit | edf0e49195d1dced5d65a7fb43bd17b8a5e59c18 (patch) | |
tree | a7aaa05c2f932b53fd8488ef2593d9aff945b210 /include/wlr/backend | |
parent | 5b07e20f2a0b4bf30f5eafdd83aac75bc6d554ef (diff) |
Add wlr_x11_output_set_title
Diffstat (limited to 'include/wlr/backend')
-rw-r--r-- | include/wlr/backend/x11.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/wlr/backend/x11.h b/include/wlr/backend/x11.h index 9b2704e7..9be976b2 100644 --- a/include/wlr/backend/x11.h +++ b/include/wlr/backend/x11.h @@ -42,4 +42,9 @@ bool wlr_input_device_is_x11(struct wlr_input_device *device); */ bool wlr_output_is_x11(struct wlr_output *output); +/** + * Sets the title of a wlr_output which is an X11 window. + */ +void wlr_x11_output_set_title(struct wlr_output *output, const char *title); + #endif |