Fix quoting of commands passed to for_window

E.g. `for_window [class="mpv"] move container to output "Dell Inc. ..."`
does not work because the executed move command only uses `Dell` as
output name.
This commit is contained in:
minus 2019-03-15 19:37:20 +01:00 committed by Brian Ashworth
parent e687e120e0
commit 264e213c08
1 changed files with 1 additions and 0 deletions

View File

@ -387,6 +387,7 @@ struct cmd_results *config_command(char *exec, char **new_block) {
&& handler->handle != cmd_bindsym
&& handler->handle != cmd_bindcode
&& handler->handle != cmd_set
&& handler->handle != cmd_for_window
&& (*argv[i] == '\"' || *argv[i] == '\'')) {
strip_quotes(argv[i]);
}