aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorS. Christoffer Eliesen <christoffer@eliesen.no>2015-10-17 14:28:38 +0200
committerS. Christoffer Eliesen <christoffer@eliesen.no>2015-10-17 14:28:38 +0200
commit71bcee4f96206e9988bc9a1302f6e1fff4526ce3 (patch)
tree50d4a4f477d70fae23c9cc89df329625d42500ea
parent16e904634c65128610537bed7fcb16ac3bb45165 (diff)
downloadsway-71bcee4f96206e9988bc9a1302f6e1fff4526ce3.tar.xz
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.
-rw-r--r--sway/commands.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 2358b9e9..41223937 100644
--- 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);