mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			403 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _SWAYBAR_IPC_H
 | 
						|
#define _SWAYBAR_IPC_H
 | 
						|
#include <stdbool.h>
 | 
						|
#include "swaybar/bar.h"
 | 
						|
 | 
						|
bool ipc_initialize(struct swaybar *bar, const char *bar_id);
 | 
						|
bool handle_ipc_readable(struct swaybar *bar);
 | 
						|
void ipc_get_workspaces(struct swaybar *bar);
 | 
						|
void ipc_send_workspace_command(struct swaybar *bar, const char *ws);
 | 
						|
void ipc_execute_binding(struct swaybar *bar, struct swaybar_binding *bind);
 | 
						|
 | 
						|
#endif
 |