summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ipc.h1
-rw-r--r--include/sway/config.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/include/ipc.h b/include/ipc.h
index 98390335..2b16dc50 100644
--- a/include/ipc.h
+++ b/include/ipc.h
@@ -13,6 +13,7 @@ enum ipc_command_type {
13 IPC_GET_BAR_CONFIG = 6, 13 IPC_GET_BAR_CONFIG = 6,
14 IPC_GET_VERSION = 7, 14 IPC_GET_VERSION = 7,
15 IPC_GET_INPUTS = 8, 15 IPC_GET_INPUTS = 8,
16 IPC_GET_CLIPBOARD = 9,
16 // Events send from sway to clients. Events have the highest bits set. 17 // Events send from sway to clients. Events have the highest bits set.
17 IPC_EVENT_WORKSPACE = ((1<<31) | 0), 18 IPC_EVENT_WORKSPACE = ((1<<31) | 0),
18 IPC_EVENT_OUTPUT = ((1<<31) | 1), 19 IPC_EVENT_OUTPUT = ((1<<31) | 1),
diff --git a/include/sway/config.h b/include/sway/config.h
index 999a471a..b0cd86eb 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -235,8 +235,9 @@ enum ipc_feature {
235 IPC_FEATURE_EVENT_WINDOW = 2048, 235 IPC_FEATURE_EVENT_WINDOW = 2048,
236 IPC_FEATURE_EVENT_BINDING = 4096, 236 IPC_FEATURE_EVENT_BINDING = 4096,
237 IPC_FEATURE_EVENT_INPUT = 8192, 237 IPC_FEATURE_EVENT_INPUT = 8192,
238 IPC_FEATURE_GET_CLIPBOARD = 16384,
238 239
239 IPC_FEATURE_ALL_COMMANDS = 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128, 240 IPC_FEATURE_ALL_COMMANDS = 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 16384,
240 IPC_FEATURE_ALL_EVENTS = 256 | 512 | 1024 | 2048 | 4096 | 8192, 241 IPC_FEATURE_ALL_EVENTS = 256 | 512 | 1024 | 2048 | 4096 | 8192,
241 242
242 IPC_FEATURE_ALL = IPC_FEATURE_ALL_COMMANDS | IPC_FEATURE_ALL_EVENTS, 243 IPC_FEATURE_ALL = IPC_FEATURE_ALL_COMMANDS | IPC_FEATURE_ALL_EVENTS,