aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/config.h
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-10-03 18:58:38 -0400
committerTony Crisci <tony@dubstepdish.com>2017-10-03 18:58:38 -0400
commit30eabf38b8a79f95a8bad441833b062a4d34d1fc (patch)
treec8e39ef48bfa4db116dfd3b51167617e5d2b8683 /include/rootston/config.h
parent4c9807d3a68688ee0d6f96e3fc2a60f5edcca857 (diff)
parent836242b0c4b6028c6d04209f575d894fbfe85b08 (diff)
Merge branch 'master' into feature/xdg-popup
Diffstat (limited to 'include/rootston/config.h')
-rw-r--r--include/rootston/config.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/rootston/config.h b/include/rootston/config.h
index 0832d88d..ece11829 100644
--- a/include/rootston/config.h
+++ b/include/rootston/config.h
@@ -18,6 +18,14 @@ struct device_config {
struct wl_list link;
};
+struct binding_config {
+ uint32_t modifiers;
+ xkb_keysym_t *keysyms;
+ size_t keysyms_len;
+ char *command;
+ struct wl_list link;
+};
+
struct roots_config {
// TODO: Multiple cursors, multiseat
struct {
@@ -27,6 +35,7 @@ struct roots_config {
struct wl_list outputs;
struct wl_list devices;
+ struct wl_list bindings;
char *config_path;
};