The hidden_state and mode of each i3bar instance can now be controlled from within i3. Therefore, two new i3 command were introduced: _ bar hidden_state show|hide|toggle [<bar_id>] show: always show the bar hide: normal hide mode toggle: toggle between show and hide (individually for each bar) _ bar mode dock|hide|invisible|toggle [<bar_id>] hide,dock: like before invisible: always keep the bar hidden toggle: toggle between dock and hide (individually for each bar) This patch introduces a hidden_state ("hidden_state hide|show") in the barconfig, which indicates the current hidden_state of each i3bar instance. It only affects the bar when in hide mode. Additionally, a new invisible mode was introduced. In order to change the hidden_state or mode of the bar from i3, a barconfig-update event was introduced, for which a bar can subscribe and the bar then gets notified about the currently set hidden_state and mode in its barconfig. For convenience, an id field ("id <bar_id>") was added to the barconfig, where one can set the desired id for the corresponding bar. If the id is not specified, i3 will deterministically choose an id; otherwise, with the previous random approach for finding a new id, which is actually not shared with i3bar, as it would determine its id on startup, the event-subscription would be destroyed on reload. Still, this issue remains when manually changing the bar_id in the config and then reloading. fixes #833, #651
106 lines
2.9 KiB
C
106 lines
2.9 KiB
C
/*
|
||
* vim:ts=4:sw=4:expandtab
|
||
*
|
||
* i3 - an improved dynamic tiling window manager
|
||
* © 2009-2013 Michael Stapelberg and contributors (see also: LICENSE)
|
||
*
|
||
* This public header defines the different constants and message types to use
|
||
* for the IPC interface to i3 (see docs/ipc for more information).
|
||
*
|
||
*/
|
||
#ifndef I3_I3_IPC_H
|
||
#define I3_I3_IPC_H
|
||
|
||
#include <stdint.h>
|
||
|
||
typedef struct i3_ipc_header {
|
||
/* 6 = strlen(I3_IPC_MAGIC) */
|
||
char magic[6];
|
||
uint32_t size;
|
||
uint32_t type;
|
||
} __attribute__ ((packed)) i3_ipc_header_t;
|
||
|
||
/*
|
||
* Messages from clients to i3
|
||
*
|
||
*/
|
||
|
||
/** Never change this, only on major IPC breakage (don’t do that) */
|
||
#define I3_IPC_MAGIC "i3-ipc"
|
||
|
||
/** The payload of the message will be interpreted as a command */
|
||
#define I3_IPC_MESSAGE_TYPE_COMMAND 0
|
||
|
||
/** Requests the current workspaces from i3 */
|
||
#define I3_IPC_MESSAGE_TYPE_GET_WORKSPACES 1
|
||
|
||
/** Subscribe to the specified events */
|
||
#define I3_IPC_MESSAGE_TYPE_SUBSCRIBE 2
|
||
|
||
/** Requests the current outputs from i3 */
|
||
#define I3_IPC_MESSAGE_TYPE_GET_OUTPUTS 3
|
||
|
||
/** Requests the tree layout from i3 */
|
||
#define I3_IPC_MESSAGE_TYPE_GET_TREE 4
|
||
|
||
/** 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
|
||
|
||
/** Request the i3 version */
|
||
#define I3_IPC_MESSAGE_TYPE_GET_VERSION 7
|
||
|
||
/*
|
||
* Messages from i3 to clients
|
||
*
|
||
*/
|
||
|
||
/** Command reply type */
|
||
#define I3_IPC_REPLY_TYPE_COMMAND 0
|
||
|
||
/** Workspaces reply type */
|
||
#define I3_IPC_REPLY_TYPE_WORKSPACES 1
|
||
|
||
/** Subscription reply type */
|
||
#define I3_IPC_REPLY_TYPE_SUBSCRIBE 2
|
||
|
||
/** Outputs reply type */
|
||
#define I3_IPC_REPLY_TYPE_OUTPUTS 3
|
||
|
||
/** Tree reply type */
|
||
#define I3_IPC_REPLY_TYPE_TREE 4
|
||
|
||
/** Marks reply type */
|
||
#define I3_IPC_REPLY_TYPE_MARKS 5
|
||
|
||
/** Bar config reply type */
|
||
#define I3_IPC_REPLY_TYPE_BAR_CONFIG 6
|
||
|
||
/** i3 version reply type */
|
||
#define I3_IPC_REPLY_TYPE_VERSION 7
|
||
|
||
/*
|
||
* Events from i3 to clients. Events have the first bit set high.
|
||
*
|
||
*/
|
||
#define I3_IPC_EVENT_MASK (1 << 31)
|
||
|
||
/* The workspace event will be triggered upon changes in the workspace list */
|
||
#define I3_IPC_EVENT_WORKSPACE (I3_IPC_EVENT_MASK | 0)
|
||
|
||
/* The output event will be triggered upon changes in the output list */
|
||
#define I3_IPC_EVENT_OUTPUT (I3_IPC_EVENT_MASK | 1)
|
||
|
||
/* The output event will be triggered upon mode changes */
|
||
#define I3_IPC_EVENT_MODE (I3_IPC_EVENT_MASK | 2)
|
||
|
||
/* The window event will be triggered upon window changes */
|
||
#define I3_IPC_EVENT_WINDOW (I3_IPC_EVENT_MASK | 3)
|
||
|
||
/** Bar config update will be triggered to update the bar config */
|
||
#define I3_IPC_EVENT_BARCONFIG_UPDATE (I3_IPC_EVENT_MASK | 4)
|
||
|
||
#endif
|