Implement barconfig_update IPC event

This commit is contained in:
Mikkel Oscar Lyderik 2015-12-21 15:28:34 +01:00
parent a96a5e0013
commit 66c66c7304
2 changed files with 89 additions and 60 deletions

View file

@ -2,6 +2,7 @@
#define _SWAY_IPC_SERVER_H
#include "container.h"
#include "config.h"
#include "ipc.h"
void ipc_init(void);
@ -9,6 +10,7 @@ void ipc_terminate(void);
struct sockaddr_un *ipc_user_sockaddr(void);
void ipc_event_workspace(swayc_t *old, swayc_t *new);
void ipc_event_barconfig_update(struct bar_config *bar);
const char *swayc_type_string(enum swayc_types type);
#endif