diff options
| author | Drew DeVault <sir@cmpwn.com> | 2018-10-10 17:07:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-10 17:07:02 +0200 |
| commit | 0a36d14d7a694a88580da1d9b83837afe608a2eb (patch) | |
| tree | e21f0b633212c6b8084348f08fc68cec2efece8b /include/swaybar/config.h | |
| parent | 782ed19bc30378126f44272c1e46f2a05a9b2db1 (diff) | |
| parent | cd6917d4a821fe904a2c242dff673967aa3ad4b2 (diff) | |
Merge pull request #2798 from RedSoxFan/bar-bindsym
Implement bar bindsym
Diffstat (limited to 'include/swaybar/config.h')
| -rw-r--r-- | include/swaybar/config.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/swaybar/config.h b/include/swaybar/config.h index 5f5688cf..d0336c27 100644 --- a/include/swaybar/config.h +++ b/include/swaybar/config.h @@ -3,6 +3,7 @@ #include <stdbool.h> #include <stdint.h> #include <wayland-client.h> +#include "list.h" #include "util.h" struct box_colors { @@ -17,6 +18,12 @@ struct config_output { size_t index; }; +struct swaybar_binding { + uint32_t button; + char *command; + bool release; +}; + struct swaybar_config { char *status_command; bool pango_markup; @@ -29,6 +36,7 @@ struct swaybar_config { bool binding_mode_indicator; bool wrap_scroll; bool workspace_buttons; + list_t *bindings; struct wl_list outputs; // config_output::link bool all_outputs; int height; |
