diff options
author | Drew DeVault <[email protected]> | 2015-08-21 07:12:05 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-21 07:12:05 -0400 |
commit | 464b49eda26f6a518bda39a8d07e1d9b0f498897 (patch) | |
tree | 7d0c55221b3028c2843da88b41029abac864b4a5 /include/ipc.h | |
parent | cc5713aee6525fd1783c1a9280079f7e9abcd882 (diff) | |
parent | 96ab21b2766096bdb42d79a0169d42b9ff00e2fb (diff) |
Merge pull request #101 from Luminarys/master
Added in basic resizing command.
Diffstat (limited to 'include/ipc.h')
-rw-r--r-- | include/ipc.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/ipc.h b/include/ipc.h index 0b6441f6..2d71c666 100644 --- a/include/ipc.h +++ b/include/ipc.h @@ -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); |