diff options
author | Drew DeVault <[email protected]> | 2017-02-20 06:48:33 -0500 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2017-02-20 06:48:33 -0500 |
commit | eabfb6c5598d5b655b40d8677d97b58cce757ef5 (patch) | |
tree | 02075b877bb9a6751e492aa9c1cbe2d59491d3d1 /sway/commands.c | |
parent | 1980a0835804b205da1fa00187640ae8a0c4f9be (diff) |
Add * policies and fix bug
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/commands.c b/sway/commands.c index c15cb00a..068e8866 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -297,6 +297,7 @@ static struct cmd_handler bar_colors_handlers[] = { }; static struct cmd_handler ipc_handlers[] = { + { "*", cmd_ipc_cmd }, { "bar-config", cmd_ipc_cmd }, { "command", cmd_ipc_cmd }, { "events", cmd_ipc_events }, @@ -308,6 +309,7 @@ static struct cmd_handler ipc_handlers[] = { }; static struct cmd_handler ipc_event_handlers[] = { + { "*", cmd_ipc_event_cmd }, { "binding", cmd_ipc_event_cmd }, { "input", cmd_ipc_event_cmd }, { "mode", cmd_ipc_event_cmd }, |