diff options
author | emersion <contact@emersion.fr> | 2018-09-29 11:23:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-29 11:23:38 +0200 |
commit | 0f0d0c7f9bc4c447224aa3812c31fc596a5bde7c (patch) | |
tree | 0b32b31a765eca48ce7739de7f4b602e7c71be57 /sway/config | |
parent | dc01e884f7d71435015dd3e61f0e269a88975d8a (diff) | |
parent | 0a0cf4540ab57ba4af6fb547fd5c1a1df61fb8cf (diff) | |
download | sway-0f0d0c7f9bc4c447224aa3812c31fc596a5bde7c.tar.xz |
Merge pull request #2635 from RedSoxFan/fix-bg-special
Handle shell special characters in bg file path
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/config/output.c b/sway/config/output.c index 74d79130..6f337b66 100644 --- a/sway/config/output.c +++ b/sway/config/output.c @@ -237,7 +237,7 @@ void apply_output_config(struct output_config *oc, struct sway_output *output) { wlr_log(WLR_DEBUG, "Setting background for output %d to %s", output_i, oc->background); - size_t len = snprintf(NULL, 0, "%s %d %s %s %s", + size_t len = snprintf(NULL, 0, "%s %d \"%s\" %s %s", config->swaybg_command ? config->swaybg_command : "swaybg", output_i, oc->background, oc->background_option, oc->background_fallback ? oc->background_fallback : ""); @@ -246,7 +246,7 @@ void apply_output_config(struct output_config *oc, struct sway_output *output) { wlr_log(WLR_DEBUG, "Unable to allocate swaybg command"); return; } - snprintf(command, len + 1, "%s %d %s %s %s", + snprintf(command, len + 1, "%s %d \"%s\" %s %s", config->swaybg_command ? config->swaybg_command : "swaybg", output_i, oc->background, oc->background_option, oc->background_fallback ? oc->background_fallback : ""); |