config: add support for pipe-* actions in mouse bindings

Closes #183
This commit is contained in:
Daniel Eklöf 2020-11-06 19:29:23 +01:00
parent 398f0b699a
commit 9ce79e2ef0
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
5 changed files with 65 additions and 6 deletions

View file

@ -47,6 +47,11 @@ struct config_mouse_binding {
struct config_key_modifiers modifiers;
int button;
int count;
struct {
char *cmd;
char **argv;
bool master_copy;
} pipe;
};
struct config {