You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
383 B
13 lines
383 B
#ifndef _SWAYBAR_IPC_H
|
|
#define _SWAYBAR_IPC_H
|
|
#include <stdbool.h>
|
|
#include "swaybar/bar.h"
|
|
|
|
bool ipc_initialize(struct swaybar *bar);
|
|
bool handle_ipc_readable(struct swaybar *bar);
|
|
bool 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
|