mirror of
				https://github.com/swaywm/sway.git
				synced 2025-10-29 05:40:18 -04:00 
			
		
		
		
	Fix issues with swaybar on DRM
This commit is contained in:
		
							parent
							
								
									00d450e554
								
							
						
					
					
						commit
						2a90d26ebe
					
				
					 2 changed files with 5 additions and 2 deletions
				
			
		|  | @ -30,6 +30,7 @@ struct swaybar_config { | |||
| 	bool wrap_scroll; | ||||
| 	bool workspace_buttons; | ||||
| 	struct wl_list outputs; | ||||
| 	bool all_outputs; | ||||
| 	int height; | ||||
| 
 | ||||
| 	struct { | ||||
|  |  | |||
|  | @ -188,7 +188,7 @@ static void ipc_parse_config( | |||
| 			json_object *output = json_object_array_get_idx(outputs, i); | ||||
| 			const char *name = json_object_get_string(output); | ||||
| 			if (strcmp("*", name) == 0) { | ||||
| 				// TODO: do we need to clear out the list here or something
 | ||||
| 				config->all_outputs = true; | ||||
| 				break; | ||||
| 			} | ||||
| 			struct config_output *coutput = calloc( | ||||
|  | @ -197,6 +197,8 @@ static void ipc_parse_config( | |||
| 			coutput->index = SIZE_MAX; | ||||
| 			wl_list_insert(&config->outputs, &coutput->link); | ||||
| 		} | ||||
| 	} else { | ||||
| 		config->all_outputs = true; | ||||
| 	} | ||||
| 
 | ||||
| 	if (colors) { | ||||
|  | @ -279,7 +281,7 @@ static void ipc_get_outputs(struct swaybar *bar) { | |||
| 		if (!active) { | ||||
| 			continue; | ||||
| 		} | ||||
| 		if (wl_list_empty(&bar->config->outputs)) { | ||||
| 		if (bar->config->all_outputs) { | ||||
| 			struct config_output *coutput = calloc( | ||||
| 					1, sizeof(struct config_output)); | ||||
| 			coutput->name = strdup(name); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Drew DeVault
						Drew DeVault