add an IPC request to get the bar configuration (by ID)

This commit is contained in:
Michael Stapelberg
2011-10-12 23:23:09 +01:00
parent 4898f78e5e
commit 24ede1c834
3 changed files with 127 additions and 4 deletions

View File

@ -41,6 +41,9 @@
/** Request the current defined marks from i3 */
#define I3_IPC_MESSAGE_TYPE_GET_MARKS 5
/** Request the configuration for a specific 'bar' */
#define I3_IPC_MESSAGE_TYPE_GET_BAR_CONFIG 6
/*
* Messages from i3 to clients
*
@ -61,9 +64,12 @@
/** Tree reply type */
#define I3_IPC_REPLY_TYPE_TREE 4
/** Marks reply type*/
/** Marks reply type */
#define I3_IPC_REPLY_TYPE_MARKS 5
/** Bar config reply type */
#define I3_IPC_REPLY_TYPE_BAR_CONFIG 6
/*
* Events from i3 to clients. Events have the first bit set high.
*