| 
									
										
										
										
											2018-11-25 12:12:48 +01:00
										 |  |  | #define _POSIX_C_SOURCE 200809L
 | 
					
						
							| 
									
										
										
										
											2018-08-03 01:23:39 +10:00
										 |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | #include <assert.h>
 | 
					
						
							|  |  |  | #include <sys/stat.h>
 | 
					
						
							|  |  |  | #include <sys/wait.h>
 | 
					
						
							| 
									
										
										
										
											2018-08-05 00:24:42 -07:00
										 |  |  | #include <unistd.h>
 | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | #include <wayland-client.h>
 | 
					
						
							|  |  |  | #include <wayland-cursor.h>
 | 
					
						
							|  |  |  | #include "log.h"
 | 
					
						
							|  |  |  | #include "list.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-27 11:19:42 -04:00
										 |  |  | #include "swaynag/render.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | #include "swaynag/swaynag.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-28 09:34:25 -04:00
										 |  |  | #include "swaynag/types.h"
 | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | #include "wlr-layer-shell-unstable-v1-client-protocol.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void nop() { | 
					
						
							|  |  |  | 	// Intentionally left blank
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static bool terminal_execute(char *terminal, char *command) { | 
					
						
							| 
									
										
										
										
											2018-07-27 11:19:42 -04:00
										 |  |  | 	char fname[] = "/tmp/swaynagXXXXXX"; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	FILE *tmp= fdopen(mkstemp(fname), "w"); | 
					
						
							|  |  |  | 	if (!tmp) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 		sway_log(SWAY_ERROR, "Failed to create temp script"); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 	sway_log(SWAY_DEBUG, "Created temp script: %s", fname); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	fprintf(tmp, "#!/bin/sh\nrm %s\n%s", fname, command); | 
					
						
							|  |  |  | 	fclose(tmp); | 
					
						
							|  |  |  | 	chmod(fname, S_IRUSR | S_IWUSR | S_IXUSR); | 
					
						
							| 
									
										
										
										
											2019-01-16 01:57:53 +00:00
										 |  |  | 	char *cmd = malloc(sizeof(char) * (strlen(terminal) + strlen(" -e ") + strlen(fname) + 1)); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	sprintf(cmd, "%s -e %s", terminal, fname); | 
					
						
							|  |  |  | 	execl("/bin/sh", "/bin/sh", "-c", cmd, NULL); | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 	sway_log_errno(SWAY_ERROR, "Failed to run command, execl() returned."); | 
					
						
							| 
									
										
										
										
											2019-01-16 01:57:53 +00:00
										 |  |  | 	free(cmd); | 
					
						
							| 
									
										
										
										
											2019-01-16 10:18:46 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | static void swaynag_button_execute(struct swaynag *swaynag, | 
					
						
							|  |  |  | 		struct swaynag_button *button) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 	sway_log(SWAY_DEBUG, "Executing [%s]: %s", button->text, button->action); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (button->type == SWAYNAG_ACTION_DISMISS) { | 
					
						
							|  |  |  | 		swaynag->run_display = false; | 
					
						
							|  |  |  | 	} else if (button->type == SWAYNAG_ACTION_EXPAND) { | 
					
						
							|  |  |  | 		swaynag->details.visible = !swaynag->details.visible; | 
					
						
							|  |  |  | 		render_frame(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 		pid_t pid = fork(); | 
					
						
							|  |  |  | 		if (pid < 0) { | 
					
						
							|  |  |  | 			sway_log_errno(SWAY_DEBUG, "Failed to fork"); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} else if (pid == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 			// Child process. Will be used to prevent zombie processes
 | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 			pid = fork(); | 
					
						
							|  |  |  | 			if (pid < 0) { | 
					
						
							|  |  |  | 				sway_log_errno(SWAY_DEBUG, "Failed to fork"); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} else if (pid == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 				// Child of the child. Will be reparented to the init process
 | 
					
						
							|  |  |  | 				char *terminal = getenv("TERMINAL"); | 
					
						
							| 
									
										
										
										
											2018-11-27 23:27:44 -05:00
										 |  |  | 				if (button->terminal && terminal && strlen(terminal)) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 					sway_log(SWAY_DEBUG, "Found $TERMINAL: %s", terminal); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 					if (!terminal_execute(terminal, button->action)) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 						swaynag_destroy(swaynag); | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 						_exit(EXIT_FAILURE); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2018-11-27 23:27:44 -05:00
										 |  |  | 					if (button->terminal) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 						sway_log(SWAY_DEBUG, | 
					
						
							| 
									
										
										
										
											2018-11-27 23:27:44 -05:00
										 |  |  | 								"$TERMINAL not found. Running directly"); | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 					execl("/bin/sh", "/bin/sh", "-c", button->action, NULL); | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 					sway_log_errno(SWAY_DEBUG, "execl failed"); | 
					
						
							|  |  |  | 					_exit(EXIT_FAILURE); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2019-04-14 00:27:47 -04:00
										 |  |  | 			_exit(EXIT_SUCCESS); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (waitpid(pid, NULL, 0) < 0) { | 
					
						
							|  |  |  | 			sway_log_errno(SWAY_DEBUG, "waitpid failed"); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void layer_surface_configure(void *data, | 
					
						
							|  |  |  | 		struct zwlr_layer_surface_v1 *surface, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t width, uint32_t height) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							|  |  |  | 	swaynag->width = width; | 
					
						
							|  |  |  | 	swaynag->height = height; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	zwlr_layer_surface_v1_ack_configure(surface, serial); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	render_frame(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void layer_surface_closed(void *data, | 
					
						
							|  |  |  | 		struct zwlr_layer_surface_v1 *surface) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							|  |  |  | 	swaynag_destroy(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct zwlr_layer_surface_v1_listener layer_surface_listener = { | 
					
						
							|  |  |  | 	.configure = layer_surface_configure, | 
					
						
							|  |  |  | 	.closed = layer_surface_closed, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | static void surface_enter(void *data, struct wl_surface *surface, | 
					
						
							|  |  |  | 		struct wl_output *output) { | 
					
						
							|  |  |  | 	struct swaynag *swaynag = data; | 
					
						
							|  |  |  | 	struct swaynag_output *swaynag_output; | 
					
						
							|  |  |  | 	wl_list_for_each(swaynag_output, &swaynag->outputs, link) { | 
					
						
							|  |  |  | 		if (swaynag_output->wl_output == output) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 			sway_log(SWAY_DEBUG, "Surface enter on output %s", | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 					swaynag_output->name); | 
					
						
							|  |  |  | 			swaynag->output = swaynag_output; | 
					
						
							|  |  |  | 			swaynag->scale = swaynag->output->scale; | 
					
						
							|  |  |  | 			render_frame(swaynag); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct wl_surface_listener surface_listener = { | 
					
						
							|  |  |  | 	.enter = surface_enter, | 
					
						
							|  |  |  | 	.leave = nop, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | static void update_cursor(struct swaynag *swaynag) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag_pointer *pointer = &swaynag->pointer; | 
					
						
							| 
									
										
										
										
											2018-08-10 18:34:23 +01:00
										 |  |  | 	if (swaynag->pointer.cursor_theme) { | 
					
						
							|  |  |  | 		wl_cursor_theme_destroy(swaynag->pointer.cursor_theme); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-06-05 17:34:28 +02:00
										 |  |  | 	const char *cursor_theme = getenv("XCURSOR_THEME"); | 
					
						
							|  |  |  | 	unsigned cursor_size = 24; | 
					
						
							|  |  |  | 	const char *env_cursor_size = getenv("XCURSOR_SIZE"); | 
					
						
							| 
									
										
										
										
											2019-06-05 18:26:12 +02:00
										 |  |  | 	if (env_cursor_size && strlen(env_cursor_size) > 0) { | 
					
						
							|  |  |  | 		errno = 0; | 
					
						
							| 
									
										
										
										
											2019-06-05 17:34:28 +02:00
										 |  |  | 		char *end; | 
					
						
							|  |  |  | 		unsigned size = strtoul(env_cursor_size, &end, 10); | 
					
						
							| 
									
										
										
										
											2019-06-05 18:26:12 +02:00
										 |  |  | 		if (!*end && errno == 0) { | 
					
						
							| 
									
										
										
										
											2019-06-05 17:34:28 +02:00
										 |  |  | 			cursor_size = size; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	pointer->cursor_theme = wl_cursor_theme_load( | 
					
						
							|  |  |  | 		cursor_theme, cursor_size * swaynag->scale, swaynag->shm); | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | 	struct wl_cursor *cursor = | 
					
						
							|  |  |  | 		wl_cursor_theme_get_cursor(pointer->cursor_theme, "left_ptr"); | 
					
						
							|  |  |  | 	pointer->cursor_image = cursor->images[0]; | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	wl_surface_set_buffer_scale(pointer->cursor_surface, | 
					
						
							|  |  |  | 			swaynag->scale); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	wl_surface_attach(pointer->cursor_surface, | 
					
						
							|  |  |  | 			wl_cursor_image_get_buffer(pointer->cursor_image), 0, 0); | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | 	wl_pointer_set_cursor(pointer->pointer, pointer->serial, | 
					
						
							|  |  |  | 			pointer->cursor_surface, | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 			pointer->cursor_image->hotspot_x / swaynag->scale, | 
					
						
							|  |  |  | 			pointer->cursor_image->hotspot_y / swaynag->scale); | 
					
						
							| 
									
										
										
										
											2018-12-15 03:31:15 -05:00
										 |  |  | 	wl_surface_damage_buffer(pointer->cursor_surface, 0, 0, | 
					
						
							|  |  |  | 			INT32_MAX, INT32_MAX); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	wl_surface_commit(pointer->cursor_surface); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | static void wl_pointer_enter(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t serial, struct wl_surface *surface, | 
					
						
							|  |  |  | 		wl_fixed_t surface_x, wl_fixed_t surface_y) { | 
					
						
							|  |  |  | 	struct swaynag *swaynag = data; | 
					
						
							|  |  |  | 	struct swaynag_pointer *pointer = &swaynag->pointer; | 
					
						
							|  |  |  | 	pointer->serial = serial; | 
					
						
							|  |  |  | 	update_cursor(swaynag); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | static void wl_pointer_motion(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t time, wl_fixed_t surface_x, wl_fixed_t surface_y) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							|  |  |  | 	swaynag->pointer.x = wl_fixed_to_int(surface_x); | 
					
						
							|  |  |  | 	swaynag->pointer.y = wl_fixed_to_int(surface_y); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void wl_pointer_button(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t serial, uint32_t time, uint32_t button, uint32_t state) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (state != WL_POINTER_BUTTON_STATE_PRESSED) { | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	double x = swaynag->pointer.x * swaynag->scale; | 
					
						
							|  |  |  | 	double y = swaynag->pointer.y * swaynag->scale; | 
					
						
							|  |  |  | 	for (int i = 0; i < swaynag->buttons->length; i++) { | 
					
						
							|  |  |  | 		struct swaynag_button *nagbutton = swaynag->buttons->items[i]; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		if (x >= nagbutton->x | 
					
						
							|  |  |  | 				&& y >= nagbutton->y | 
					
						
							|  |  |  | 				&& x < nagbutton->x + nagbutton->width | 
					
						
							|  |  |  | 				&& y < nagbutton->y + nagbutton->height) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 			swaynag_button_execute(swaynag, nagbutton); | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->details.visible && | 
					
						
							|  |  |  | 			swaynag->details.total_lines != swaynag->details.visible_lines) { | 
					
						
							|  |  |  | 		struct swaynag_button button_up = swaynag->details.button_up; | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 		if (x >= button_up.x | 
					
						
							|  |  |  | 				&& y >= button_up.y | 
					
						
							|  |  |  | 				&& x < button_up.x + button_up.width | 
					
						
							|  |  |  | 				&& y < button_up.y + button_up.height | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 				&& swaynag->details.offset > 0) { | 
					
						
							|  |  |  | 			swaynag->details.offset--; | 
					
						
							|  |  |  | 			render_frame(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		struct swaynag_button button_down = swaynag->details.button_down; | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 		int bot = swaynag->details.total_lines; | 
					
						
							|  |  |  | 		bot -= swaynag->details.visible_lines; | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 		if (x >= button_down.x | 
					
						
							|  |  |  | 				&& y >= button_down.y | 
					
						
							|  |  |  | 				&& x < button_down.x + button_down.width | 
					
						
							|  |  |  | 				&& y < button_down.y + button_down.height | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 				&& swaynag->details.offset < bot) { | 
					
						
							|  |  |  | 			swaynag->details.offset++; | 
					
						
							|  |  |  | 			render_frame(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void wl_pointer_axis(void *data, struct wl_pointer *wl_pointer, | 
					
						
							|  |  |  | 		uint32_t time, uint32_t axis, wl_fixed_t value) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							|  |  |  | 	if (!swaynag->details.visible | 
					
						
							|  |  |  | 			|| swaynag->pointer.x < swaynag->details.x | 
					
						
							|  |  |  | 			|| swaynag->pointer.y < swaynag->details.y | 
					
						
							|  |  |  | 			|| swaynag->pointer.x >= swaynag->details.x + swaynag->details.width | 
					
						
							|  |  |  | 			|| swaynag->pointer.y >= swaynag->details.y + swaynag->details.height | 
					
						
							|  |  |  | 			|| swaynag->details.total_lines == swaynag->details.visible_lines) { | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	int direction = wl_fixed_to_int(value); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	int bot = swaynag->details.total_lines - swaynag->details.visible_lines; | 
					
						
							|  |  |  | 	if (direction < 0 && swaynag->details.offset > 0) { | 
					
						
							|  |  |  | 		swaynag->details.offset--; | 
					
						
							|  |  |  | 	} else if (direction > 0 && swaynag->details.offset < bot) { | 
					
						
							|  |  |  | 		swaynag->details.offset++; | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	render_frame(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct wl_pointer_listener pointer_listener = { | 
					
						
							|  |  |  | 	.enter = wl_pointer_enter, | 
					
						
							|  |  |  | 	.leave = nop, | 
					
						
							|  |  |  | 	.motion = wl_pointer_motion, | 
					
						
							|  |  |  | 	.button = wl_pointer_button, | 
					
						
							| 
									
										
										
										
											2018-07-27 01:30:35 -04:00
										 |  |  | 	.axis = wl_pointer_axis, | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	.frame = nop, | 
					
						
							|  |  |  | 	.axis_source = nop, | 
					
						
							|  |  |  | 	.axis_stop = nop, | 
					
						
							|  |  |  | 	.axis_discrete = nop, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void seat_handle_capabilities(void *data, struct wl_seat *wl_seat, | 
					
						
							|  |  |  | 		enum wl_seat_capability caps) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							| 
									
										
										
										
											2019-04-14 01:06:09 -04:00
										 |  |  | 	bool cap_pointer = caps & WL_SEAT_CAPABILITY_POINTER; | 
					
						
							|  |  |  | 	if (cap_pointer && !swaynag->pointer.pointer) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->pointer.pointer = wl_seat_get_pointer(wl_seat); | 
					
						
							|  |  |  | 		wl_pointer_add_listener(swaynag->pointer.pointer, &pointer_listener, | 
					
						
							|  |  |  | 				swaynag); | 
					
						
							| 
									
										
										
										
											2019-04-14 01:06:09 -04:00
										 |  |  | 	} else if (!cap_pointer && swaynag->pointer.pointer) { | 
					
						
							|  |  |  | 		wl_pointer_destroy(swaynag->pointer.pointer); | 
					
						
							|  |  |  | 		swaynag->pointer.pointer = NULL; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const struct wl_seat_listener seat_listener = { | 
					
						
							|  |  |  | 	.capabilities = seat_handle_capabilities, | 
					
						
							|  |  |  | 	.name = nop, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void output_scale(void *data, struct wl_output *output, | 
					
						
							|  |  |  | 		int32_t factor) { | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	struct swaynag_output *swaynag_output = data; | 
					
						
							|  |  |  | 	swaynag_output->scale = factor; | 
					
						
							|  |  |  | 	if (swaynag_output->swaynag->output == swaynag_output) { | 
					
						
							|  |  |  | 		swaynag_output->swaynag->scale = swaynag_output->scale; | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | 		update_cursor(swaynag_output->swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 		render_frame(swaynag_output->swaynag); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct wl_output_listener output_listener = { | 
					
						
							|  |  |  | 	.geometry = nop, | 
					
						
							|  |  |  | 	.mode = nop, | 
					
						
							|  |  |  | 	.done = nop, | 
					
						
							|  |  |  | 	.scale = output_scale, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void xdg_output_handle_name(void *data, | 
					
						
							|  |  |  | 		struct zxdg_output_v1 *xdg_output, const char *name) { | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	struct swaynag_output *swaynag_output = data; | 
					
						
							|  |  |  | 	char *outname = swaynag_output->swaynag->type->output; | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 	sway_log(SWAY_DEBUG, "Checking against output %s for %s", name, outname); | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	if (!swaynag_output->swaynag->output && outname && name | 
					
						
							| 
									
										
										
										
											2018-07-28 23:25:40 -04:00
										 |  |  | 			&& strcmp(outname, name) == 0) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 		sway_log(SWAY_DEBUG, "Using output %s", name); | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 		swaynag_output->swaynag->output = swaynag_output; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	swaynag_output->name = strdup(name); | 
					
						
							|  |  |  | 	zxdg_output_v1_destroy(xdg_output); | 
					
						
							|  |  |  | 	swaynag_output->swaynag->querying_outputs--; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct zxdg_output_v1_listener xdg_output_listener = { | 
					
						
							|  |  |  | 	.logical_position = nop, | 
					
						
							|  |  |  | 	.logical_size = nop, | 
					
						
							|  |  |  | 	.done = nop, | 
					
						
							|  |  |  | 	.name = xdg_output_handle_name, | 
					
						
							|  |  |  | 	.description = nop, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void handle_global(void *data, struct wl_registry *registry, | 
					
						
							|  |  |  | 		uint32_t name, const char *interface, uint32_t version) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	if (strcmp(interface, wl_compositor_interface.name) == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->compositor = wl_registry_bind(registry, name, | 
					
						
							| 
									
										
										
										
											2018-12-15 03:31:15 -05:00
										 |  |  | 				&wl_compositor_interface, 4); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} else if (strcmp(interface, wl_seat_interface.name) == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->seat = wl_registry_bind(registry, name, &wl_seat_interface, 1); | 
					
						
							|  |  |  | 		wl_seat_add_listener(swaynag->seat, &seat_listener, swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} else if (strcmp(interface, wl_shm_interface.name) == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->shm = wl_registry_bind(registry, name, &wl_shm_interface, 1); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} else if (strcmp(interface, wl_output_interface.name) == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 		if (!swaynag->output && swaynag->xdg_output_manager) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 			swaynag->querying_outputs++; | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 			struct swaynag_output *output = | 
					
						
							|  |  |  | 				calloc(1, sizeof(struct swaynag_output)); | 
					
						
							|  |  |  | 			output->wl_output = wl_registry_bind(registry, name, | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 					&wl_output_interface, 3); | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 			output->wl_name = name; | 
					
						
							|  |  |  | 			output->scale = 1; | 
					
						
							|  |  |  | 			output->swaynag = swaynag; | 
					
						
							|  |  |  | 			wl_list_insert(&swaynag->outputs, &output->link); | 
					
						
							|  |  |  | 			wl_output_add_listener(output->wl_output, | 
					
						
							|  |  |  | 					&output_listener, output); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			struct zxdg_output_v1 *xdg_output; | 
					
						
							|  |  |  | 			xdg_output = zxdg_output_manager_v1_get_xdg_output( | 
					
						
							|  |  |  | 					swaynag->xdg_output_manager, output->wl_output); | 
					
						
							|  |  |  | 			zxdg_output_v1_add_listener(xdg_output, | 
					
						
							|  |  |  | 					&xdg_output_listener, output); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} else if (strcmp(interface, zwlr_layer_shell_v1_interface.name) == 0) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->layer_shell = wl_registry_bind( | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 				registry, name, &zwlr_layer_shell_v1_interface, 1); | 
					
						
							|  |  |  | 	} else if (strcmp(interface, zxdg_output_manager_v1_interface.name) == 0 | 
					
						
							|  |  |  | 			&& version >= ZXDG_OUTPUT_V1_NAME_SINCE_VERSION) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->xdg_output_manager = wl_registry_bind(registry, name, | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 				&zxdg_output_manager_v1_interface, | 
					
						
							|  |  |  | 				ZXDG_OUTPUT_V1_NAME_SINCE_VERSION); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void handle_global_remove(void *data, struct wl_registry *registry, | 
					
						
							|  |  |  | 		uint32_t name) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag *swaynag = data; | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	if (swaynag->output->wl_name == name) { | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag->run_display = false; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct wl_registry_listener registry_listener = { | 
					
						
							|  |  |  | 	.global = handle_global, | 
					
						
							|  |  |  | 	.global_remove = handle_global_remove, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | void swaynag_setup(struct swaynag *swaynag) { | 
					
						
							|  |  |  | 	swaynag->display = wl_display_connect(NULL); | 
					
						
							| 
									
										
										
										
											2018-10-15 21:57:59 +10:00
										 |  |  | 	if (!swaynag->display) { | 
					
						
							|  |  |  | 		sway_abort("Unable to connect to the compositor. " | 
					
						
							|  |  |  | 				"If your compositor is running, check or set the " | 
					
						
							|  |  |  | 				"WAYLAND_DISPLAY environment variable."); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	swaynag->scale = 1; | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	wl_list_init(&swaynag->outputs); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct wl_registry *registry = wl_display_get_registry(swaynag->display); | 
					
						
							|  |  |  | 	wl_registry_add_listener(registry, ®istry_listener, swaynag); | 
					
						
							|  |  |  | 	wl_display_roundtrip(swaynag->display); | 
					
						
							|  |  |  | 	assert(swaynag->compositor && swaynag->layer_shell && swaynag->shm); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	while (swaynag->querying_outputs > 0) { | 
					
						
							|  |  |  | 		wl_display_roundtrip(swaynag->display); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	if (!swaynag->output && swaynag->type->output) { | 
					
						
							| 
									
										
										
										
											2019-01-20 13:51:12 -05:00
										 |  |  | 		sway_log(SWAY_ERROR, "Output '%s' not found", swaynag->type->output); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 		swaynag_destroy(swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		exit(EXIT_FAILURE); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	struct swaynag_pointer *pointer = &swaynag->pointer; | 
					
						
							|  |  |  | 	pointer->cursor_surface = wl_compositor_create_surface(swaynag->compositor); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	assert(pointer->cursor_surface); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	swaynag->surface = wl_compositor_create_surface(swaynag->compositor); | 
					
						
							|  |  |  | 	assert(swaynag->surface); | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 	wl_surface_add_listener(swaynag->surface, &surface_listener, swaynag); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	swaynag->layer_surface = zwlr_layer_shell_v1_get_layer_surface( | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 			swaynag->layer_shell, swaynag->surface, | 
					
						
							|  |  |  | 			swaynag->output ? swaynag->output->wl_output : NULL, | 
					
						
							| 
									
										
										
										
											2018-07-27 11:19:42 -04:00
										 |  |  | 			ZWLR_LAYER_SHELL_V1_LAYER_TOP, "swaynag"); | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	assert(swaynag->layer_surface); | 
					
						
							|  |  |  | 	zwlr_layer_surface_v1_add_listener(swaynag->layer_surface, | 
					
						
							|  |  |  | 			&layer_surface_listener, swaynag); | 
					
						
							| 
									
										
										
										
											2018-07-29 22:42:03 -04:00
										 |  |  | 	zwlr_layer_surface_v1_set_anchor(swaynag->layer_surface, | 
					
						
							|  |  |  | 			swaynag->type->anchors); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	wl_registry_destroy(registry); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | void swaynag_run(struct swaynag *swaynag) { | 
					
						
							|  |  |  | 	swaynag->run_display = true; | 
					
						
							|  |  |  | 	render_frame(swaynag); | 
					
						
							|  |  |  | 	while (swaynag->run_display | 
					
						
							|  |  |  | 			&& wl_display_dispatch(swaynag->display) != -1) { | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		// This is intentionally left blank
 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-10-07 16:33:26 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (swaynag->display) { | 
					
						
							|  |  |  | 		wl_display_disconnect(swaynag->display); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | void swaynag_destroy(struct swaynag *swaynag) { | 
					
						
							|  |  |  | 	swaynag->run_display = false; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	free(swaynag->message); | 
					
						
							| 
									
										
										
										
											2018-12-08 23:55:14 +00:00
										 |  |  | 	for (int i = 0; i < swaynag->buttons->length; ++i) { | 
					
						
							|  |  |  | 		struct swaynag_button *button = swaynag->buttons->items[i]; | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 		free(button->text); | 
					
						
							|  |  |  | 		free(button->action); | 
					
						
							|  |  |  | 		free(button); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	list_free(swaynag->buttons); | 
					
						
							|  |  |  | 	free(swaynag->details.message); | 
					
						
							|  |  |  | 	free(swaynag->details.button_up.text); | 
					
						
							|  |  |  | 	free(swaynag->details.button_down.text); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->type) { | 
					
						
							|  |  |  | 		swaynag_type_free(swaynag->type); | 
					
						
							| 
									
										
										
										
											2018-07-28 09:34:25 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->layer_surface) { | 
					
						
							|  |  |  | 		zwlr_layer_surface_v1_destroy(swaynag->layer_surface); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->surface) { | 
					
						
							|  |  |  | 		wl_surface_destroy(swaynag->surface); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | 	if (swaynag->pointer.cursor_theme) { | 
					
						
							|  |  |  | 		wl_cursor_theme_destroy(swaynag->pointer.cursor_theme); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (&swaynag->buffers[0]) { | 
					
						
							|  |  |  | 		destroy_buffer(&swaynag->buffers[0]); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (&swaynag->buffers[1]) { | 
					
						
							|  |  |  | 		destroy_buffer(&swaynag->buffers[1]); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-30 13:52:02 -04:00
										 |  |  | 	if (swaynag->outputs.prev || swaynag->outputs.next) { | 
					
						
							|  |  |  | 		struct swaynag_output *output, *temp; | 
					
						
							|  |  |  | 		wl_list_for_each_safe(output, temp, &swaynag->outputs, link) { | 
					
						
							|  |  |  | 			wl_output_destroy(output->wl_output); | 
					
						
							|  |  |  | 			free(output->name); | 
					
						
							|  |  |  | 			wl_list_remove(&output->link); | 
					
						
							|  |  |  | 			free(output); | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-07-30 01:02:50 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->compositor) { | 
					
						
							|  |  |  | 		wl_compositor_destroy(swaynag->compositor); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-28 23:15:12 -04:00
										 |  |  | 	if (swaynag->shm) { | 
					
						
							|  |  |  | 		wl_shm_destroy(swaynag->shm); | 
					
						
							| 
									
										
										
										
											2018-07-25 21:57:19 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } |