aboutsummaryrefslogtreecommitdiff
path: root/include/rootston
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-10-02 17:53:30 +0200
committeremersion <contact@emersion.fr>2017-10-03 08:46:10 +0200
commit238ded1578925a1c80cba1d838ff428c25249e6a (patch)
treea9b68c81186d2a3cf628a277daa18a27a75e8a9a /include/rootston
parent97d0fe89768697ff2f6f19f0c9a900591c1d1a13 (diff)
Use a command string rather than an action enum
Diffstat (limited to 'include/rootston')
-rw-r--r--include/rootston/config.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/rootston/config.h b/include/rootston/config.h
index deff7578..ef101f2d 100644
--- a/include/rootston/config.h
+++ b/include/rootston/config.h
@@ -18,14 +18,10 @@ struct device_config {
struct wl_list link;
};
-enum binding_config_action {
- BINDING_CONFIG_ACTION_QUIT,
-};
-
struct binding_config {
xkb_keysym_t *keysyms;
size_t keysyms_len;
- enum binding_config_action action;
+ char *command;
struct wl_list link;
};