added i3-ipc support/parsing

This commit is contained in:
minus 2015-08-16 22:02:16 +02:00
parent 8981b48cd2
commit 5d99215469
2 changed files with 84 additions and 7 deletions

View file

@ -1,6 +1,17 @@
#ifndef _SWAY_IPC_H
#define _SWAY_IPC_H
enum ipc_command_type {
IPC_COMMAND = 0,
IPC_GET_WORKSPACES = 1,
IPC_SUBSCRIBE = 2,
IPC_GET_OUTPUTS = 3,
IPC_GET_TREE = 4,
IPC_GET_MARKS = 5,
IPC_GET_BAR_CONFIG = 6,
IPC_GET_VERSION = 7,
};
void init_ipc(void);
#endif