diff options
Diffstat (limited to 'sway/config')
| -rw-r--r-- | sway/config/input.c | 3 | ||||
| -rw-r--r-- | sway/config/output.c | 4 | 
2 files changed, 5 insertions, 2 deletions
diff --git a/sway/config/input.c b/sway/config/input.c index fffc8518..6b43a5b9 100644 --- a/sway/config/input.c +++ b/sway/config/input.c @@ -52,6 +52,9 @@ void merge_input_config(struct input_config *dst, struct input_config *src) {  	if (src->dwt != INT_MIN) {  		dst->dwt = src->dwt;  	} +	if (src->left_handed != INT_MIN) { +		dst->left_handed = src->left_handed; +	}  	if (src->middle_emulation != INT_MIN) {  		dst->middle_emulation = src->middle_emulation;  	} 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 : "");  | 
