mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			310 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _SWAY_COMMANDS_H
 | 
						|
#define _SWAY_COMMANDS_H
 | 
						|
#include <stdbool.h>
 | 
						|
#include "config.h"
 | 
						|
 | 
						|
struct cmd_handler {
 | 
						|
	char *command;
 | 
						|
	bool (*handle)(struct sway_config *config, int argc, char **argv);
 | 
						|
};
 | 
						|
 | 
						|
bool handle_command(struct sway_config *config, char *command);
 | 
						|
 | 
						|
void remove_view_from_scratchpad();
 | 
						|
 | 
						|
#endif
 |