diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-28 16:38:11 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-03-28 16:42:13 -0400 |
commit | 68cfa7ef6705c530ff28d9754c5b6cab7b429150 (patch) | |
tree | 0c25eb44f1285f2522b6a5f014276239cfa6ae3f /sway/commands | |
parent | 0c8a64942e087038806b353949c900e03fd764a8 (diff) |
Render layer surfaces and respect exclusive zone
Diffstat (limited to 'sway/commands')
-rw-r--r-- | sway/commands/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/output.c b/sway/commands/output.c index e747eb4e..35bc8099 100644 --- a/sway/commands/output.c +++ b/sway/commands/output.c @@ -188,7 +188,7 @@ static struct cmd_results *cmd_output_background(struct output_config *output, } wordexp_t p; - char *src = join_args(argv + *i - 1, j); + char *src = join_args(argv + *i, j); if (wordexp(src, &p, 0) != 0 || p.we_wordv[0] == NULL) { return cmd_results_new(CMD_INVALID, "output", "Invalid syntax (%s).", src); |