sway

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

commit 71bcee4f96206e9988bc9a1302f6e1fff4526ce3
parent 16e904634c65128610537bed7fcb16ac3bb45165
Author: S. Christoffer Eliesen <christoffer@eliesen.no>
Date:   Sat, 17 Oct 2015 14:28:38 +0200

commands: Ignore exec switch "--no-startup-id".

When using an i3 config verbatim in sway this switch to exec or
exec_always might appear.

Before this patch the switch would be passed to /bin/sh, causing
an error, and the command would not be run.

Diffstat:
Msway/commands.c | 10+++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/sway/commands.c b/sway/commands.c @@ -186,8 +186,16 @@ static enum cmd_status cmd_exec_always(int argc, char **argv) { if (!checkarg(argc, "exec_always", EXPECTED_MORE_THAN, 0)) { return CMD_FAILURE; } + + char *tmp = NULL; + if (strcmp((char*)*argv, "--no-startup-id") == 0) { + sway_log(L_INFO, "exec switch '--no-startup-id' not supported, ignored."); + tmp = join_args(argv + 1, argc - 1); + } else { + tmp = join_args(argv, argc); + } + // Put argument into cmd array - char *tmp = join_args(argv, argc); char cmd[4096]; strcpy(cmd, tmp); free(tmp);