mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 03:17:46 +03:00
added i3-ipc support/parsing
This commit is contained in:
parent
8981b48cd2
commit
5d99215469
2 changed files with 84 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue