diff options
author | Drew DeVault <[email protected]> | 2015-08-05 22:40:38 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-05 22:40:38 -0400 |
commit | 5767dcc86e23ba86e07dde6807b1af3deb3fdcbf (patch) | |
tree | 25aef735d3ed29e87e78d44d9979916762114edf /sway/config.h | |
parent | d0f1fb71d11a709c55b0ed56a9f35920c1282ec8 (diff) |
Mostly implement bindsym command
Diffstat (limited to 'sway/config.h')
-rw-r--r-- | sway/config.h | 3 |
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 |