diff options
author | adnano <me@adnano.co> | 2024-05-02 21:39:54 -0400 |
---|---|---|
committer | adnano <me@adnano.co> | 2024-05-02 21:39:54 -0400 |
commit | 41e8599392a543a537f15447e20fd7bc8d8f2297 (patch) | |
tree | e14de0c571a1653968cc383d8a9b1c3cd7726c06 /wayland.c | |
parent | 1f221a73cf290ff509ef6c066ff692bb48f8625e (diff) | |
download | wmenu-41e8599392a543a537f15447e20fd7bc8d8f2297.tar.gz |
Add wmenu-run executable
Diffstat (limited to 'wayland.c')
-rw-r--r-- | wayland.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -128,6 +128,11 @@ struct xkb_state *context_get_xkb_state(struct wl_context *context) { return context->keyboard->state; } +// Returns the XDG activation object for the context. +struct xdg_activation_v1 *context_get_xdg_activation(struct wl_context *context) { + return context->activation; +} + // Retrieves pasted text from a Wayland data offer. bool context_paste(struct wl_context *context) { if (!context->data_offer) { |