diff --git a/sway/commands.c b/sway/commands.c index f75c21f0c..6af3c5d0c 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -322,7 +322,7 @@ struct cmd_results *execute_command(char *_exec, struct sway_seat *seat) { cmdlist += strspn(cmdlist, whitespace); do { // Split commands - cmd = argsep(&cmdlist, ";"); + cmd = argsep(&cmdlist, ","); cmd += strspn(cmd, whitespace); if (strcmp(cmd, "") == 0) { wlr_log(L_INFO, "Ignoring empty command.");