summaryrefslogtreecommitdiff
path: root/include/swaybar/ipc.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2016-09-01 08:18:37 -0400
committerDrew DeVault <[email protected]>2016-09-01 08:18:37 -0400
commit416417a54c5875abcdc257b6ad10ff086c35eefc (patch)
tree00f20884a05d05e620a4a24bba8595557cd41405 /include/swaybar/ipc.h
parent729fdf7d9186ceba0f84b87edfd473642964227f (diff)
Reorganize includes
Diffstat (limited to 'include/swaybar/ipc.h')
-rw-r--r--include/swaybar/ipc.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/swaybar/ipc.h b/include/swaybar/ipc.h
new file mode 100644
index 00000000..c11931d0
--- /dev/null
+++ b/include/swaybar/ipc.h
@@ -0,0 +1,23 @@
+#ifndef _SWAYBAR_IPC_H
+#define _SWAYBAR_IPC_H
+
+#include "bar.h"
+
+/**
+ * Initialize ipc connection to sway and get sway state, outputs, bar_config.
+ */
+void ipc_bar_init(struct bar *bar, const char *bar_id);
+
+/**
+ * Handle ipc event from sway.
+ */
+bool handle_ipc_event(struct bar *bar);
+
+
+/**
+ * Send workspace command to sway
+ */
+void ipc_send_workspace_command(const char *workspace_name);
+
+#endif /* _SWAYBAR_IPC_H */
+