Improve sway/language

This commit is contained in:
dmitry
2021-07-13 04:33:12 +03:00
parent 7c1303f57c
commit 8310700bbb
6 changed files with 197 additions and 73 deletions

View File

@ -29,4 +29,8 @@ enum ipc_command_type {
IPC_EVENT_BINDING = ((1 << 31) | 5),
IPC_EVENT_SHUTDOWN = ((1 << 31) | 6),
IPC_EVENT_TICK = ((1 << 31) | 7),
// sway-specific event types
IPC_EVENT_BAR_STATE_UPDATE = ((1<<31) | 20),
IPC_EVENT_INPUT = ((1<<31) | 21),
};