swayfx/include/swaybar/ipc.h

12 lines
326 B
C
Raw Normal View History

2016-01-24 10:23:09 +11:00
#ifndef _SWAYBAR_IPC_H
#define _SWAYBAR_IPC_H
2018-03-30 01:38:17 +11:00
#include <stdbool.h>
#include "swaybar/bar.h"
2016-01-24 10:23:09 +11:00
2018-03-29 15:21:05 +11:00
void ipc_initialize(struct swaybar *bar, const char *bar_id);
2018-04-01 04:39:18 +10:00
bool handle_ipc_readable(struct swaybar *bar);
2018-03-29 15:21:05 +11:00
void ipc_get_workspaces(struct swaybar *bar);
void ipc_send_workspace_command(struct swaybar *bar, const char *ws);
#endif