aboutsummaryrefslogtreecommitdiff
path: root/include/ipc.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-10-14 15:13:50 +0200
committerGitHub <noreply@github.com>2018-10-14 15:13:50 +0200
commit4a05fbf8ab364657763b1d1058bdf9b4c2727b76 (patch)
treec405121528d191ba74fe329fdb18093810d9b73c /include/ipc.h
parentabde9d6627483256ccfd20bdeeaa52d7790b0426 (diff)
parent85dd36e92b2fb3d4b5fefa36927abf8f35f84c5c (diff)
downloadsway-4a05fbf8ab364657763b1d1058bdf9b4c2727b76.tar.xz
Merge pull request #2751 from ianyfan/swaybar
Bar mode/hidden_state events
Diffstat (limited to 'include/ipc.h')
-rw-r--r--include/ipc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/ipc.h b/include/ipc.h
index a3f60e19..9063b933 100644
--- a/include/ipc.h
+++ b/include/ipc.h
@@ -30,6 +30,9 @@ 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),
};
#endif