mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
12 lines
326 B
C
12 lines
326 B
C
#ifndef _SWAYBAR_IPC_H
|
|
#define _SWAYBAR_IPC_H
|
|
#include <stdbool.h>
|
|
#include "swaybar/bar.h"
|
|
|
|
void 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
|