mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Allow spaces in background file paths
This commit is contained in:
		
							parent
							
								
									5f9be1e1aa
								
							
						
					
					
						commit
						0b64cce733
					
				
					 2 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -71,7 +71,7 @@ struct cmd_results *output_cmd_background(int argc, char **argv) {
 | 
				
			||||||
			return cmd_res;
 | 
								return cmd_res;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		free(src);
 | 
							free(src);
 | 
				
			||||||
		src = strdup(p.we_wordv[0]);
 | 
							src = join_args(p.we_wordv, p.we_wordc);
 | 
				
			||||||
		wordfree(&p);
 | 
							wordfree(&p);
 | 
				
			||||||
		if (!src) {
 | 
							if (!src) {
 | 
				
			||||||
			wlr_log(WLR_ERROR, "Failed to duplicate string");
 | 
								wlr_log(WLR_ERROR, "Failed to duplicate string");
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -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",
 | 
							wlr_log(WLR_DEBUG, "Setting background for output %d to %s",
 | 
				
			||||||
				output_i, oc->background);
 | 
									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",
 | 
									config->swaybg_command ? config->swaybg_command : "swaybg",
 | 
				
			||||||
				output_i, oc->background, oc->background_option,
 | 
									output_i, oc->background, oc->background_option,
 | 
				
			||||||
				oc->background_fallback ? oc->background_fallback : "");
 | 
									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");
 | 
								wlr_log(WLR_DEBUG, "Unable to allocate swaybg command");
 | 
				
			||||||
			return;
 | 
								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",
 | 
									config->swaybg_command ? config->swaybg_command : "swaybg",
 | 
				
			||||||
				output_i, oc->background, oc->background_option,
 | 
									output_i, oc->background, oc->background_option,
 | 
				
			||||||
				oc->background_fallback ? oc->background_fallback : "");
 | 
									oc->background_fallback ? oc->background_fallback : "");
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue