| 
									
										
										
										
											2017-03-10 23:41:24 -05:00
										 |  |  | #define _XOPEN_SOURCE 500
 | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							|  |  |  | #include "wayland-desktop-shell-client-protocol.h"
 | 
					
						
							|  |  |  | #include "log.h"
 | 
					
						
							| 
									
										
										
										
											2016-09-01 08:18:37 -04:00
										 |  |  | #include "swaybar/config.h"
 | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | uint32_t parse_position(const char *position) { | 
					
						
							|  |  |  | 	if (strcmp("top", position) == 0) { | 
					
						
							|  |  |  | 		return DESKTOP_SHELL_PANEL_POSITION_TOP; | 
					
						
							|  |  |  | 	} else if (strcmp("bottom", position) == 0) { | 
					
						
							|  |  |  | 		return DESKTOP_SHELL_PANEL_POSITION_BOTTOM; | 
					
						
							|  |  |  | 	} else if (strcmp("left", position) == 0) { | 
					
						
							|  |  |  | 		return DESKTOP_SHELL_PANEL_POSITION_LEFT; | 
					
						
							|  |  |  | 	} else if (strcmp("right", position) == 0) { | 
					
						
							|  |  |  | 		return DESKTOP_SHELL_PANEL_POSITION_RIGHT; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return DESKTOP_SHELL_PANEL_POSITION_BOTTOM; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | char *parse_font(const char *font) { | 
					
						
							|  |  |  | 	char *new_font = NULL; | 
					
						
							|  |  |  | 	if (strncmp("pango:", font, 6) == 0) { | 
					
						
							| 
									
										
										
										
											2016-03-29 23:31:44 +02:00
										 |  |  | 		font += 6; | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-29 23:31:44 +02:00
										 |  |  | 	new_font = strdup(font); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 	return new_font; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-24 02:34:20 +01:00
										 |  |  | struct config *init_config() { | 
					
						
							|  |  |  | 	struct config *config = calloc(1, sizeof(struct config)); | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 	config->status_command = NULL; | 
					
						
							| 
									
										
										
										
											2016-10-20 16:43:38 +03:00
										 |  |  | 	config->pango_markup = false; | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 	config->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM; | 
					
						
							| 
									
										
										
										
											2016-01-24 00:23:09 +01:00
										 |  |  | 	config->font = strdup("monospace 10"); | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 	config->mode = NULL; | 
					
						
							|  |  |  | 	config->sep_symbol = NULL; | 
					
						
							|  |  |  | 	config->strip_workspace_numbers = false; | 
					
						
							|  |  |  | 	config->binding_mode_indicator = true; | 
					
						
							| 
									
										
										
										
											2016-07-17 11:26:38 -04:00
										 |  |  | 	config->wrap_scroll = false; | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 	config->workspace_buttons = true; | 
					
						
							| 
									
										
										
										
											2016-02-23 15:06:04 +01:00
										 |  |  | 	config->all_outputs = false; | 
					
						
							| 
									
										
										
										
											2016-02-22 17:27:17 +01:00
										 |  |  | 	config->outputs = create_list(); | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-24 00:23:09 +01:00
										 |  |  | 	/* height */ | 
					
						
							|  |  |  | 	config->height = 0; | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-07 16:45:28 -07:00
										 |  |  | #ifdef ENABLE_TRAY
 | 
					
						
							|  |  |  | 	config->tray_output = NULL; | 
					
						
							|  |  |  | 	config->icon_theme = NULL; | 
					
						
							|  |  |  | 	config->tray_padding = 2; | 
					
						
							|  |  |  | 	/**
 | 
					
						
							|  |  |  | 	 * These constants are used by wayland and are defined in | 
					
						
							|  |  |  | 	 * linux/input-event-codes.h | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	config->activate_button = 0x110; /* BTN_LEFT */ | 
					
						
							|  |  |  | 	config->context_button = 0x111; /* BTN_RIGHT */ | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 	/* colors */ | 
					
						
							|  |  |  | 	config->colors.background = 0x000000FF; | 
					
						
							|  |  |  | 	config->colors.statusline = 0xFFFFFFFF; | 
					
						
							|  |  |  | 	config->colors.separator = 0x666666FF; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config->colors.focused_workspace.border = 0x4C7899FF; | 
					
						
							|  |  |  | 	config->colors.focused_workspace.background = 0x285577FF; | 
					
						
							|  |  |  | 	config->colors.focused_workspace.text = 0xFFFFFFFF; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config->colors.active_workspace.border = 0x333333FF; | 
					
						
							|  |  |  | 	config->colors.active_workspace.background = 0x5F676AFF; | 
					
						
							|  |  |  | 	config->colors.active_workspace.text = 0xFFFFFFFF; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config->colors.inactive_workspace.border = 0x333333FF; | 
					
						
							|  |  |  | 	config->colors.inactive_workspace.background = 0x222222FF; | 
					
						
							|  |  |  | 	config->colors.inactive_workspace.text = 0x888888FF; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config->colors.urgent_workspace.border = 0x2F343AFF; | 
					
						
							|  |  |  | 	config->colors.urgent_workspace.background = 0x900000FF; | 
					
						
							|  |  |  | 	config->colors.urgent_workspace.text = 0xFFFFFFFF; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config->colors.binding_mode.border = 0x2F343AFF; | 
					
						
							|  |  |  | 	config->colors.binding_mode.background = 0x900000FF; | 
					
						
							|  |  |  | 	config->colors.binding_mode.text = 0xFFFFFFFF; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return config; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-24 02:34:20 +01:00
										 |  |  | void free_config(struct config *config) { | 
					
						
							| 
									
										
										
										
											2016-01-23 02:47:44 +01:00
										 |  |  | 	free(config->status_command); | 
					
						
							|  |  |  | 	free(config->font); | 
					
						
							|  |  |  | 	free(config->mode); | 
					
						
							|  |  |  | 	free(config->sep_symbol); | 
					
						
							|  |  |  | 	free(config); | 
					
						
							|  |  |  | } |