You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							32 lines
						
					
					
						
							897 B
						
					
					
				
			
		
		
	
	
							32 lines
						
					
					
						
							897 B
						
					
					
				| #include "log.h"
 | |
| #include "sway/commands.h"
 | |
| #include "sway/config.h"
 | |
| #include "sway/tree/arrange.h"
 | |
| #include "sway/tree/container.h"
 | |
| #include "sway/tree/view.h"
 | |
| #include "util.h"
 | |
| 
 | |
| struct cmd_results *cmd_urgent(int argc, char **argv) {
 | |
| 	struct cmd_results *error = NULL;
 | |
| 	if ((error = checkarg(argc, "urgent", EXPECTED_EQUAL_TO, 1))) {
 | |
| 		return error;
 | |
| 	}
 | |
| 	struct sway_container *container =
 | |
| 		config->handler_context.current_container;
 | |
| 	if (container->type != C_VIEW) {
 | |
| 		return cmd_results_new(CMD_INVALID, "urgent",
 | |
| 				"Only views can be urgent");
 | |
| 	}
 | |
| 	struct sway_view *view = container->sway_view;
 | |
| 
 | |
| 	if (strcmp(argv[0], "allow") == 0) {
 | |
| 		view->allow_request_urgent = true;
 | |
| 	} else if (strcmp(argv[0], "deny") == 0) {
 | |
| 		view->allow_request_urgent = false;
 | |
| 	} else {
 | |
| 		view_set_urgent(view, parse_boolean(argv[0], view_is_urgent(view)));
 | |
| 	}
 | |
| 
 | |
| 	return cmd_results_new(CMD_SUCCESS, NULL, NULL);
 | |
| }
 |