summaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-05-12 09:01:16 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-05-12 09:01:16 -0400
commit2da685e913432716f55cd537fd3d64f3fb3cc09a (patch)
treec986cca12ecdb3e3ac4d94d38205028788315889 /include/sway/config.h
parentMerge branch 'master' into scdoc (diff)
parentMerge pull request #1959 from RyanDwyer/ipc-get-seats (diff)
downloadsway-2da685e913432716f55cd537fd3d64f3fb3cc09a.tar.gz
sway-2da685e913432716f55cd537fd3d64f3fb3cc09a.tar.zst
sway-2da685e913432716f55cd537fd3d64f3fb3cc09a.zip
Merge remote-tracking branch 'origin/master' into scdoc
Diffstat (limited to 'include/sway/config.h')
-rw-r--r--include/sway/config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index a0e7e81f..b20458cb 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -263,8 +263,10 @@ enum ipc_feature {
263 IPC_FEATURE_EVENT_BINDING = 4096, 263 IPC_FEATURE_EVENT_BINDING = 4096,
264 IPC_FEATURE_EVENT_INPUT = 8192, 264 IPC_FEATURE_EVENT_INPUT = 8192,
265 IPC_FEATURE_GET_CLIPBOARD = 16384, 265 IPC_FEATURE_GET_CLIPBOARD = 16384,
266 IPC_FEATURE_GET_SEATS = 32768,
266 267
267 IPC_FEATURE_ALL_COMMANDS = 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 16384, 268 IPC_FEATURE_ALL_COMMANDS =
269 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 16384 | 32768,
268 IPC_FEATURE_ALL_EVENTS = 256 | 512 | 1024 | 2048 | 4096 | 8192, 270 IPC_FEATURE_ALL_EVENTS = 256 | 512 | 1024 | 2048 | 4096 | 8192,
269 271
270 IPC_FEATURE_ALL = IPC_FEATURE_ALL_COMMANDS | IPC_FEATURE_ALL_EVENTS, 272 IPC_FEATURE_ALL = IPC_FEATURE_ALL_COMMANDS | IPC_FEATURE_ALL_EVENTS,