diff options
author | Brian Ashworth <bosrsf04@gmail.com> | 2018-09-13 16:36:09 -0400 |
---|---|---|
committer | Brian Ashworth <bosrsf04@gmail.com> | 2018-09-13 22:21:10 -0400 |
commit | 0b64cce73385cb739ee89c983835b098f04ee68a (patch) | |
tree | cc1a4212a98e24bcd5994dd24892b89fd8cf2d76 /sway/commands | |
parent | 5f9be1e1aaeaa58879d5979ced4bc29f90c6024a (diff) |
Allow spaces in background file paths
Diffstat (limited to 'sway/commands')
-rw-r--r-- | sway/commands/output/background.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/output/background.c b/sway/commands/output/background.c index ddad679d..8ab52a2e 100644 --- a/sway/commands/output/background.c +++ b/sway/commands/output/background.c @@ -71,7 +71,7 @@ struct cmd_results *output_cmd_background(int argc, char **argv) { return cmd_res; } free(src); - src = strdup(p.we_wordv[0]); + src = join_args(p.we_wordv, p.we_wordc); wordfree(&p); if (!src) { wlr_log(WLR_ERROR, "Failed to duplicate string"); |