sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 82559c16c701aa912b341ecbbd116c2992c5e698
parent 742d1764a6fb1fb9269dc9ffe08319da98f4d7b8
Author: Ryan Dwyer <RyanDwyer@users.noreply.github.com>
Date:   Tue,  2 Oct 2018 08:14:01 +1000

Merge branch 'master' into fix-2653
Diffstat:
Msway/commands.c | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/sway/commands.c b/sway/commands.c @@ -391,7 +391,11 @@ struct cmd_results *config_command(char *exec) { // Var replacement, for all but first argument of set // TODO commands for (i = handler->handle == cmd_set ? 2 : 1; i < argc; ++i) { - if (*argv[i] == '\"' || *argv[i] == '\'') { + if (handler->handle != cmd_exec && handler->handle != cmd_exec_always + && handler->handle != cmd_bindsym + && handler->handle != cmd_bindcode + && handler->handle != cmd_set + && (*argv[i] == '\"' || *argv[i] == '\'')) { strip_quotes(argv[i]); } argv[i] = do_var_replacement(argv[i]);