aboutsummaryrefslogtreecommitdiffstats
path: root/include/swaybar/ipc.h
blob: 81e48a6b077661f930e6feacb51072523dcdce63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#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);

#endif