diff options
author | adnano <me@adnano.co> | 2024-04-07 08:51:57 -0400 |
---|---|---|
committer | adnano <me@adnano.co> | 2024-04-07 08:51:57 -0400 |
commit | cf6f5b9d06d72ded0b077d6770854d0003c1b4aa (patch) | |
tree | 36680c80bcbac349a8f1c9f423c0cffc62423c10 /menu.h | |
parent | 41b2e8b1e1d1415a43baa6393b7237e7e77468eb (diff) | |
download | wmenu-cf6f5b9d06d72ded0b077d6770854d0003c1b4aa.tar.gz |
Support xdg_activation_v1 protocol
Diffstat (limited to 'menu.h')
-rw-r--r-- | menu.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -4,6 +4,7 @@ #include <xkbcommon/xkbcommon.h> #include "pool-buffer.h" +#include "xdg-activation-v1-client-protocol.h" // A menu item. struct item { @@ -55,6 +56,8 @@ struct menu { int (*strncmp)(const char *, const char *, size_t); // Whether the input is a password bool passwd; + // Whether to execute the selected item + bool exec; // The font used to display the menu char *font; // The number of lines to list items vertically @@ -78,6 +81,7 @@ struct menu { struct wl_data_device_manager *data_device_manager; struct zwlr_layer_shell_v1 *layer_shell; struct output *output_list; + struct xdg_activation_v1 *activation; struct keyboard *keyboard; struct wl_data_device *data_device; |