mirror of
https://github.com/NickHu/sway
synced 2024-12-28 22:23:30 +01:00
cab1352801
This starts up the event loop and wayland display and shims out the basic top level rendering concepts. Also includes some changes to incorporate pango into the 1.x codebase properly.
9 lines
245 B
C
9 lines
245 B
C
#ifndef _SWAYBAR_IPC_H
|
|
#define _SWAYBAR_IPC_H
|
|
#include "swaybar/bar.h"
|
|
|
|
void ipc_bar_init(struct swaybar *bar, const char *bar_id);
|
|
bool handle_ipc_event(struct swaybar *bar);
|
|
void ipc_send_workspace_command(const char *workspace_name);
|
|
|
|
#endif
|