Added in basic resize command

This commit is contained in:
Luminarys 2015-08-20 11:30:32 -05:00
parent 15d9f1edcb
commit bc3babf566
3 changed files with 183 additions and 6 deletions

View file

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