aboutsummaryrefslogtreecommitdiff
path: root/include/config.h
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2016-01-07 21:43:00 +0100
committerFurkan Sahin <furkan-dev@proton.me>2016-01-07 21:43:00 +0100
commitcd8a4896584cca6a5bffa9ba2188ac32213fd7b1 (patch)
treea854f1068b7360952835b38bc38a1138bf1de7f0 /include/config.h
parent050039753c2a8d044482564576d1852e7cd5b8de (diff)
Implement bindsym --release
This is a "simple" version of --release (same as i3) that only supports a binding that contain one normal key. e.g.: bindsym --release $mod+x exec somthing-fun I didn't bother implementing it for a combination like `$mod+x+z` since it is a bit tricky to get right and also a bit weird to actually do on a keyboard.
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index 5e1c39f3..8220f804 100644
--- a/include/config.h
+++ b/include/config.h
@@ -22,6 +22,7 @@ struct sway_variable {
*/
struct sway_binding {
int order;
+ bool release;
list_t *keys;
uint32_t modifiers;
char *command;