summaryrefslogtreecommitdiff
path: root/sway/config.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2015-08-05 22:40:38 -0400
committerDrew DeVault <[email protected]>2015-08-05 22:40:38 -0400
commit5767dcc86e23ba86e07dde6807b1af3deb3fdcbf (patch)
tree25aef735d3ed29e87e78d44d9979916762114edf /sway/config.h
parentd0f1fb71d11a709c55b0ed56a9f35920c1282ec8 (diff)
Mostly implement bindsym command
Diffstat (limited to 'sway/config.h')
-rw-r--r--sway/config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/config.h b/sway/config.h
index b2475871..bcf65ec8 100644
--- a/sway/config.h
+++ b/sway/config.h
@@ -12,7 +12,7 @@ struct sway_variable {
struct sway_binding {
list_t *keys;
- struct wlc_modifiers modifiers;
+ uint32_t modifiers;
char *command;
};
@@ -28,5 +28,6 @@ struct sway_config {
};
struct sway_config *read_config(FILE *file);
+char *do_var_replacement(struct sway_config *config, char *str);
#endif