]> git.sur5r.net Git - i3/i3/blob - docs/ipc
Add an i3bar flag: --verbose
[i3/i3] / docs / ipc
1 IPC interface (interprocess communication)
2 ==========================================
3 Michael Stapelberg <michael@i3wm.org>
4 September 2017
5
6 This document describes how to interface with i3 from a separate process. This
7 is useful for example to remote-control i3 (to write test cases for example) or
8 to get various information like the current workspaces to implement an external
9 workspace bar.
10
11 The method of choice for IPC in our case is a unix socket because it has very
12 little overhead on both sides and is usually available without headaches in
13 most languages. In the default configuration file, the ipc-socket gets created
14 in +/tmp/i3-%u.XXXXXX/ipc-socket.%p+ where +%u+ is your UNIX username, +%p+ is
15 the PID of i3 and XXXXXX is a string of random characters from the portable
16 filename character set (see mkdtemp(3)). You can get the socketpath from i3 by
17 calling +i3 --get-socketpath+.
18
19 All i3 utilities, like +i3-msg+ and +i3-input+ will read the +I3_SOCKET_PATH+
20 X11 property, stored on the X11 root window.
21
22 [WARNING]
23 .Use an existing library!
24 There are existing libraries for many languages. You can have a look at
25 <<libraries>> or search the web if your language of choice is not mentioned.
26 Usually, it is not necessary to implement low-level communication with i3
27 directly.
28
29 == Establishing a connection
30
31 To establish a connection, simply open the IPC socket. The following code
32 snippet illustrates this in Perl:
33
34 -------------------------------------------------------------
35 use IO::Socket::UNIX;
36 chomp(my $path = qx(i3 --get-socketpath));
37 my $sock = IO::Socket::UNIX->new(Peer => $path);
38 -------------------------------------------------------------
39
40 == Sending messages to i3
41
42 To send a message to i3, you have to format in the binary message format which
43 i3 expects. This format specifies a magic string in the beginning to ensure
44 the integrity of messages (to prevent follow-up errors). Following the magic
45 string comes the length of the payload of the message as 32-bit integer, and
46 the type of the message as 32-bit integer (the integers are not converted, so
47 they are in native byte order).
48
49 The magic string currently is "i3-ipc" and will only be changed when a change
50 in the IPC API is done which breaks compatibility (we hope that we don’t need
51 to do that).
52
53 .Currently implemented message types
54 [options="header",cols="^10%,^20%,^20%,^50%"]
55 |======================================================
56 | Type (numeric) | Type (name) | Reply type | Purpose
57 | 0 | +RUN_COMMAND+ | <<_command_reply,COMMAND>> | Run the payload as an i3 command (like the commands you can bind to keys).
58 | 1 | +GET_WORKSPACES+ | <<_workspaces_reply,WORKSPACES>> | Get the list of current workspaces.
59 | 2 | +SUBSCRIBE+ | <<_subscribe_reply,SUBSCRIBE>> | Subscribe this IPC connection to the event types specified in the message payload. See <<events>>.
60 | 3 | +GET_OUTPUTS+ | <<_outputs_reply,OUTPUTS>> | Get the list of current outputs.
61 | 4 | +GET_TREE+ | <<_tree_reply,TREE>> | Get the i3 layout tree.
62 | 5 | +GET_MARKS+ | <<_marks_reply,MARKS>> | Gets the names of all currently set marks.
63 | 6 | +GET_BAR_CONFIG+ | <<_bar_config_reply,BAR_CONFIG>> | Gets the specified bar configuration or the names of all bar configurations if payload is empty.
64 | 7 | +GET_VERSION+ | <<_version_reply,VERSION>> | Gets the i3 version.
65 | 8 | +GET_BINDING_MODES+ | <<_binding_modes_reply,BINDING_MODES>> | Gets the names of all currently configured binding modes.
66 | 9 | +GET_CONFIG+ | <<_config_reply,CONFIG>> | Returns the last loaded i3 config.
67 | 10 | +SEND_TICK+ | <<_tick_reply,TICK>> | Sends a tick event with the specified payload.
68 | 11 | +SYNC+ | <<_sync_reply,SYNC>> | Sends an i3 sync event with the specified random value to the specified window.
69 |======================================================
70
71 So, a typical message could look like this:
72 --------------------------------------------------
73 "i3-ipc" <message length> <message type> <payload>
74 --------------------------------------------------
75
76 Or, as a hexdump:
77 ------------------------------------------------------------------------------
78 00000000  69 33 2d 69 70 63 04 00  00 00 00 00 00 00 65 78  |i3-ipc........ex|
79 00000010  69 74                                             |it|
80 ------------------------------------------------------------------------------
81
82 To generate and send such a message, you could use the following code in Perl:
83 ------------------------------------------------------------
84 sub format_ipc_command {
85     my ($msg) = @_;
86     my $len;
87     # Get the real byte count (vs. amount of characters)
88     { use bytes; $len = length($msg); }
89     return "i3-ipc" . pack("LL", $len, 0) . $msg;
90 }
91
92 $sock->write(format_ipc_command("exit"));
93 ------------------------------------------------------------------------------
94
95 == Receiving replies from i3
96
97 Replies from i3 usually consist of a simple string (the length of the string
98 is the message_length, so you can consider them length-prefixed) which in turn
99 contain the JSON serialization of a data structure. For example, the
100 GET_WORKSPACES message returns an array of workspaces (each workspace is a map
101 with certain attributes).
102
103 === Reply format
104
105 The reply format is identical to the normal message format. There also is
106 the magic string, then the message length, then the message type and the
107 payload.
108
109 The following reply types are implemented:
110
111 COMMAND (0)::
112         Confirmation/Error code for the RUN_COMMAND message.
113 WORKSPACES (1)::
114         Reply to the GET_WORKSPACES message.
115 SUBSCRIBE (2)::
116         Confirmation/Error code for the SUBSCRIBE message.
117 OUTPUTS (3)::
118         Reply to the GET_OUTPUTS message.
119 TREE (4)::
120         Reply to the GET_TREE message.
121 MARKS (5)::
122         Reply to the GET_MARKS message.
123 BAR_CONFIG (6)::
124         Reply to the GET_BAR_CONFIG message.
125 VERSION (7)::
126         Reply to the GET_VERSION message.
127 BINDING_MODES (8)::
128         Reply to the GET_BINDING_MODES message.
129 GET_CONFIG (9)::
130         Reply to the GET_CONFIG message.
131 TICK (10)::
132         Reply to the SEND_TICK message.
133
134 [[_command_reply]]
135 === COMMAND reply
136
137 The reply consists of a list of serialized maps for each command that was
138 parsed. Each has the property +success (bool)+ and may also include a
139 human-readable error message in the property +error (string)+.
140
141 *Example:*
142 -------------------
143 [{ "success": true }]
144 -------------------
145
146 [[_workspaces_reply]]
147 === WORKSPACES reply
148
149 The reply consists of a serialized list of workspaces. Each workspace has the
150 following properties:
151
152 num (integer)::
153         The logical number of the workspace. Corresponds to the command
154         to switch to this workspace. For named workspaces, this will be -1.
155 name (string)::
156         The name of this workspace (by default num+1), as changed by the
157         user. Encoded in UTF-8.
158 visible (boolean)::
159         Whether this workspace is currently visible on an output (multiple
160         workspaces can be visible at the same time).
161 focused (boolean)::
162         Whether this workspace currently has the focus (only one workspace
163         can have the focus at the same time).
164 urgent (boolean)::
165         Whether a window on this workspace has the "urgent" flag set.
166 rect (map)::
167         The rectangle of this workspace (equals the rect of the output it
168         is on), consists of x, y, width, height.
169 output (string)::
170         The video output this workspace is on (LVDS1, VGA1, …).
171
172 *Example:*
173 -------------------
174 [
175  {
176   "num": 0,
177   "name": "1",
178   "visible": true,
179   "focused": true,
180   "urgent": false,
181   "rect": {
182    "x": 0,
183    "y": 0,
184    "width": 1280,
185    "height": 800
186   },
187   "output": "LVDS1"
188  },
189  {
190   "num": 1,
191   "name": "2",
192   "visible": false,
193   "focused": false,
194   "urgent": false,
195   "rect": {
196    "x": 0,
197    "y": 0,
198    "width": 1280,
199    "height": 800
200   },
201   "output": "LVDS1"
202  }
203 ]
204 -------------------
205
206 [[_subscribe_reply]]
207 === SUBSCRIBE reply
208
209 The reply consists of a single serialized map. The only property is
210 +success (bool)+, indicating whether the subscription was successful (the
211 default) or whether a JSON parse error occurred.
212
213 *Example:*
214 -------------------
215 { "success": true }
216 -------------------
217
218 [[_outputs_reply]]
219 === OUTPUTS reply
220
221 The reply consists of a serialized list of outputs. Each output has the
222 following properties:
223
224 name (string)::
225         The name of this output (as seen in +xrandr(1)+). Encoded in UTF-8.
226 active (boolean)::
227         Whether this output is currently active (has a valid mode).
228 primary (boolean)::
229         Whether this output is currently the primary output.
230 current_workspace (string)::
231         The name of the current workspace that is visible on this output. +null+ if
232         the output is not active.
233 rect (map)::
234         The rectangle of this output (equals the rect of the output it
235         is on), consists of x, y, width, height.
236
237 *Example:*
238 -------------------
239 [
240  {
241   "name": "LVDS1",
242   "active": true,
243   "current_workspace": "4",
244   "rect": {
245    "x": 0,
246    "y": 0,
247    "width": 1280,
248    "height": 800
249   }
250  },
251  {
252   "name": "VGA1",
253   "active": true,
254   "current_workspace": "1",
255   "rect": {
256    "x": 1280,
257    "y": 0,
258    "width": 1280,
259    "height": 1024
260   }
261  }
262 ]
263 -------------------
264
265 [[_tree_reply]]
266 === TREE reply
267
268 The reply consists of a serialized tree. Each node in the tree (representing
269 one container) has at least the properties listed below. While the nodes might
270 have more properties, please do not use any properties which are not documented
271 here. They are not yet finalized and will probably change!
272
273 id (integer)::
274         The internal ID (actually a C pointer value) of this container. Do not
275         make any assumptions about it. You can use it to (re-)identify and
276         address containers when talking to i3.
277 name (string)::
278         The internal name of this container. For all containers which are part
279         of the tree structure down to the workspace contents, this is set to a
280         nice human-readable name of the container.
281         For containers that have an X11 window, the content is the title
282         (_NET_WM_NAME property) of that window.
283         For all other containers, the content is not defined (yet).
284 type (string)::
285         Type of this container. Can be one of "root", "output", "con",
286         "floating_con", "workspace" or "dockarea".
287 border (string)::
288         Can be either "normal", "none" or "pixel", depending on the
289         container’s border style.
290 current_border_width (integer)::
291         Number of pixels of the border width.
292 layout (string)::
293         Can be either "splith", "splitv", "stacked", "tabbed", "dockarea" or
294         "output".
295         Other values might be possible in the future, should we add new
296         layouts.
297 orientation (string)::
298         Can be either "none" (for non-split containers), "horizontal" or
299         "vertical".
300         THIS FIELD IS OBSOLETE. It is still present, but your code should not
301         use it. Instead, rely on the layout field.
302 percent (float)::
303         The percentage which this container takes in its parent. A value of
304         +null+ means that the percent property does not make sense for this
305         container, for example for the root container.
306 rect (map)::
307         The absolute display coordinates for this container. Display
308         coordinates means that when you have two 1600x1200 monitors on a single
309         X11 Display (the standard way), the coordinates of the first window on
310         the second monitor are +{ "x": 1600, "y": 0, "width": 1600, "height":
311         1200 }+.
312 window_rect (map)::
313         The coordinates of the *actual client window* inside its container.
314         These coordinates are relative to the container and do not include the
315         window decoration (which is actually rendered on the parent container).
316         So, when using the +default+ layout, you will have a 2 pixel border on
317         each side, making the window_rect +{ "x": 2, "y": 0, "width": 632,
318         "height": 366 }+ (for example).
319 deco_rect (map)::
320         The coordinates of the *window decoration* inside its container. These
321         coordinates are relative to the container and do not include the actual
322         client window.
323 geometry (map)::
324         The original geometry the window specified when i3 mapped it. Used when
325         switching a window to floating mode, for example.
326 window (integer)::
327         The X11 window ID of the *actual client window* inside this container.
328         This field is set to null for split containers or otherwise empty
329         containers. This ID corresponds to what xwininfo(1) and other
330         X11-related tools display (usually in hex).
331 urgent (bool)::
332         Whether this container (window, split container, floating container or
333         workspace) has the urgency hint set, directly or indirectly. All parent
334         containers up until the workspace container will be marked urgent if they
335         have at least one urgent child.
336 focused (bool)::
337         Whether this container is currently focused.
338 focus (array of integer)::
339         List of child node IDs (see +nodes+, +floating_nodes+ and +id+) in focus
340         order. Traversing the tree by following the first entry in this array
341         will result in eventually reaching the one node with +focused+ set to
342         true.
343 nodes (array of node)::
344         The tiling (i.e. non-floating) child containers of this node.
345 floating_nodes (array of node)::
346         The floating child containers of this node. Only non-empty on nodes with
347         type +workspace+.
348
349 Please note that in the following example, I have left out some keys/values
350 which are not relevant for the type of the node. Otherwise, the example would
351 be by far too long (it already is quite long, despite showing only 1 window and
352 one dock window).
353
354 It is useful to have an overview of the structure before taking a look at the
355 JSON dump:
356
357 * root
358 ** LVDS1
359 *** topdock
360 *** content
361 **** workspace 1
362 ***** window 1
363 *** bottomdock
364 **** dock window 1
365 ** VGA1
366
367 *Example:*
368 -----------------------
369 {
370  "id": 6875648,
371  "name": "root",
372  "rect": {
373    "x": 0,
374    "y": 0,
375    "width": 1280,
376    "height": 800
377  },
378  "nodes": [
379
380    {
381     "id": 6878320,
382     "name": "LVDS1",
383     "layout": "output",
384     "rect": {
385       "x": 0,
386       "y": 0,
387       "width": 1280,
388       "height": 800
389     },
390     "nodes": [
391
392       {
393        "id": 6878784,
394        "name": "topdock",
395        "layout": "dockarea",
396        "orientation": "vertical",
397        "rect": {
398          "x": 0,
399          "y": 0,
400          "width": 1280,
401          "height": 0
402        }
403       },
404
405       {
406        "id": 6879344,
407        "name": "content",
408        "rect": {
409          "x": 0,
410          "y": 0,
411          "width": 1280,
412          "height": 782
413        },
414        "nodes": [
415
416          {
417           "id": 6880464,
418           "name": "1",
419           "orientation": "horizontal",
420           "rect": {
421             "x": 0,
422             "y": 0,
423             "width": 1280,
424             "height": 782
425           },
426           "floating_nodes": [],
427           "nodes": [
428
429             {
430              "id": 6929968,
431              "name": "#aa0000",
432              "border": "normal",
433              "percent": 1,
434              "rect": {
435                "x": 0,
436                "y": 18,
437                "width": 1280,
438                "height": 782
439              }
440             }
441
442           ]
443          }
444
445        ]
446       },
447
448       {
449        "id": 6880208,
450        "name": "bottomdock",
451        "layout": "dockarea",
452        "orientation": "vertical",
453        "rect": {
454          "x": 0,
455          "y": 782,
456          "width": 1280,
457          "height": 18
458        },
459        "nodes": [
460
461          {
462           "id": 6931312,
463           "name": "#00aa00",
464           "percent": 1,
465           "rect": {
466             "x": 0,
467             "y": 782,
468             "width": 1280,
469             "height": 18
470           }
471          }
472
473        ]
474       }
475     ]
476    }
477  ]
478 }
479 ------------------------
480
481 [[_marks_reply]]
482 === MARKS reply
483
484 The reply consists of a single array of strings for each container that has a
485 mark. A mark can only be set on one container, so the array is unique.
486 The order of that array is undefined.
487
488 If no window has a mark the response will be the empty array [].
489
490 [[_bar_config_reply]]
491 === BAR_CONFIG reply
492
493 This can be used by third-party workspace bars (especially i3bar, but others
494 are free to implement compatible alternatives) to get the +bar+ block
495 configuration from i3.
496
497 Depending on the input, the reply is either:
498
499 empty input::
500         An array of configured bar IDs
501 Bar ID::
502         A JSON map containing the configuration for the specified bar.
503
504 Each bar configuration has the following properties:
505
506 id (string)::
507         The ID for this bar. Included in case you request multiple
508         configurations and want to differentiate the different replies.
509 mode (string)::
510         Either +dock+ (the bar sets the dock window type) or +hide+ (the bar
511         does not show unless a specific key is pressed).
512 position (string)::
513         Either +bottom+ or +top+ at the moment.
514 status_command (string)::
515         Command which will be run to generate a statusline. Each line on stdout
516         of this command will be displayed in the bar. At the moment, no
517         formatting is supported.
518 font (string)::
519         The font to use for text on the bar.
520 workspace_buttons (boolean)::
521         Display workspace buttons or not? Defaults to true.
522 binding_mode_indicator (boolean)::
523         Display the mode indicator or not? Defaults to true.
524 verbose (boolean)::
525         Should the bar enable verbose output for debugging? Defaults to false.
526 colors (map)::
527         Contains key/value pairs of colors. Each value is a color code in hex,
528         formatted #rrggbb (like in HTML).
529
530 The following colors can be configured at the moment:
531
532 background::
533         Background color of the bar.
534 statusline::
535         Text color to be used for the statusline.
536 separator::
537         Text color to be used for the separator.
538 focused_background::
539         Background color of the bar on the currently focused monitor output.
540 focused_statusline::
541         Text color to be used for the statusline on the currently focused
542         monitor output.
543 focused_separator::
544         Text color to be used for the separator on the currently focused
545         monitor output.
546 focused_workspace_text/focused_workspace_bg/focused_workspace_border::
547         Text/background/border color for a workspace button when the workspace
548         has focus.
549 active_workspace_text/active_workspace_bg/active_workspace_border::
550         Text/background/border color for a workspace button when the workspace
551         is active (visible) on some output, but the focus is on another one.
552         You can only tell this apart from the focused workspace when you are
553         using multiple monitors.
554 inactive_workspace_text/inactive_workspace_bg/inactive_workspace_border::
555         Text/background/border color for a workspace button when the workspace
556         does not have focus and is not active (visible) on any output. This
557         will be the case for most workspaces.
558 urgent_workspace_text/urgent_workspace_bg/urgent_workspace_border::
559         Text/background/border color for workspaces which contain at least one
560         window with the urgency hint set.
561 binding_mode_text/binding_mode_bg/binding_mode_border::
562         Text/background/border color for the binding mode indicator.
563
564
565 *Example of configured bars:*
566 --------------
567 ["bar-bxuqzf"]
568 --------------
569
570 *Example of bar configuration:*
571 --------------
572 {
573  "id": "bar-bxuqzf",
574  "mode": "dock",
575  "position": "bottom",
576  "status_command": "i3status",
577  "font": "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1",
578  "workspace_buttons": true,
579  "binding_mode_indicator": true,
580  "verbose": false,
581  "colors": {
582    "background": "#c0c0c0",
583    "statusline": "#00ff00",
584    "focused_workspace_text": "#ffffff",
585    "focused_workspace_bg": "#000000"
586  }
587 }
588 --------------
589
590 [[_version_reply]]
591 === VERSION reply
592
593 The reply consists of a single JSON dictionary with the following keys:
594
595 major (integer)::
596         The major version of i3, such as +4+.
597 minor (integer)::
598         The minor version of i3, such as +2+. Changes in the IPC interface (new
599         features) will only occur with new minor (or major) releases. However,
600         bugfixes might be introduced in patch releases, too.
601 patch (integer)::
602         The patch version of i3, such as +1+ (when the complete version is
603         +4.2.1+). For versions such as +4.2+, patch will be set to +0+.
604 human_readable (string)::
605         A human-readable version of i3 containing the precise git version,
606         build date and branch name. When you need to display the i3 version to
607         your users, use the human-readable version whenever possible (since
608         this is what +i3 --version+ displays, too).
609 loaded_config_file_name (string)::
610         The current config path.
611
612 *Example:*
613 -------------------
614 {
615    "human_readable" : "4.2-169-gf80b877 (2012-08-05, branch \"next\")",
616    "loaded_config_file_name" : "/home/hwangcc23/.i3/config",
617    "minor" : 2,
618    "patch" : 0,
619    "major" : 4
620 }
621 -------------------
622
623 [[_binding_modes_reply]]
624 === BINDING_MODES reply
625
626 The reply consists of an array of all currently configured binding modes.
627
628 *Example:*
629 ---------------------
630 ["default", "resize"]
631 ---------------------
632
633 [[_config_reply]]
634 === CONFIG reply
635
636 The config reply is a map which currently only contains the "config" member,
637 which is a string containing the config file as loaded by i3 most recently.
638
639 *Example:*
640 -------------------
641 { "config": "font pango:monospace 8\nbindsym Mod4+q exit\n" }
642 -------------------
643
644 [[_tick_reply]]
645 === TICK reply
646
647 The reply is a map containing the "success" member. After the reply was
648 received, the tick event has been written to all IPC connections which subscribe
649 to tick events. UNIX sockets are usually buffered, but you can be certain that
650 once you receive the tick event you just triggered, you must have received all
651 events generated prior to the +SEND_TICK+ message (happened-before relation).
652
653 *Example:*
654 -------------------
655 { "success": true }
656 -------------------
657
658 [[_sync_reply]]
659 === SYNC reply
660
661 The reply is a map containing the "success" member. After the reply was
662 received, the https://i3wm.org/docs/testsuite.html#i3_sync[i3 sync message] was
663 responded to.
664
665 *Example:*
666 -------------------
667 { "success": true }
668 -------------------
669
670 == Events
671
672 [[events]]
673
674 To get informed when certain things happen in i3, clients can subscribe to
675 events. Events consist of a name (like "workspace") and an event reply type
676 (like I3_IPC_EVENT_WORKSPACE). The events sent by i3 are in the same format
677 as replies to specific commands. However, the highest bit of the message type
678 is set to 1 to indicate that this is an event reply instead of a normal reply.
679
680 Caveat: As soon as you subscribe to an event, it is not guaranteed any longer
681 that the requests to i3 are processed in order. This means, the following
682 situation can happen: You send a GET_WORKSPACES request but you receive a
683 "workspace" event before receiving the reply to GET_WORKSPACES. If your
684 program does not want to cope which such kinds of race conditions (an
685 event based library may not have a problem here), I suggest you create a
686 separate connection to receive events.
687
688 === Subscribing to events
689
690 By sending a message of type SUBSCRIBE with a JSON-encoded array as payload
691 you can register to an event.
692
693 *Example:*
694 ---------------------------------
695 type: SUBSCRIBE
696 payload: [ "workspace", "output" ]
697 ---------------------------------
698
699
700 === Available events
701
702 The numbers in parenthesis is the event type (keep in mind that you need to
703 strip the highest bit first).
704
705 workspace (0)::
706         Sent when the user switches to a different workspace, when a new
707         workspace is initialized or when a workspace is removed (because the
708         last client vanished).
709 output (1)::
710         Sent when RandR issues a change notification (of either screens,
711         outputs, CRTCs or output properties).
712 mode (2)::
713         Sent whenever i3 changes its binding mode.
714 window (3)::
715         Sent when a client's window is successfully reparented (that is when i3
716         has finished fitting it into a container), when a window received input
717         focus or when certain properties of the window have changed.
718 barconfig_update (4)::
719     Sent when the hidden_state or mode field in the barconfig of any bar
720     instance was updated and when the config is reloaded.
721 binding (5)::
722         Sent when a configured command binding is triggered with the keyboard or
723         mouse
724 shutdown (6)::
725         Sent when the ipc shuts down because of a restart or exit by user command
726 tick (7)::
727         Sent when the ipc client subscribes to the tick event (with +"first":
728         true+) or when any ipc client sends a SEND_TICK message (with +"first":
729         false+).
730
731 *Example:*
732 --------------------------------------------------------------------
733 # the appropriate 4 bytes read from the socket are stored in $input
734
735 # unpack a 32-bit unsigned integer
736 my $message_type = unpack("L", $input);
737
738 # check if the highest bit is 1
739 my $is_event = (($message_type >> 31) == 1);
740
741 # use the other bits
742 my $event_type = ($message_type & 0x7F);
743
744 if ($is_event) {
745   say "Received event of type $event_type";
746 }
747 --------------------------------------------------------------------
748
749 === workspace event
750
751 This event consists of a single serialized map containing a property
752 +change (string)+ which indicates the type of the change ("focus", "init",
753 "empty", "urgent", "reload", "rename", "restored", "move"). A
754 +current (object)+ property will be present with the affected workspace
755 whenever the type of event affects a workspace (otherwise, it will be +null).
756
757 When the change is "focus", an +old (object)+ property will be present with the
758 previous workspace.  When the first switch occurs (when i3 focuses the
759 workspace visible at the beginning) there is no previous workspace, and the
760 +old+ property will be set to +null+.  Also note that if the previous is empty
761 it will get destroyed when switching, but will still be present in the "old"
762 property.
763
764 *Example:*
765 ---------------------
766 {
767  "change": "focus",
768  "current": {
769   "id": 28489712,
770   "type": "workspace",
771   ...
772  }
773  "old": {
774   "id": 28489715,
775   "type": "workspace",
776   ...
777  }
778 }
779 ---------------------
780
781 === output event
782
783 This event consists of a single serialized map containing a property
784 +change (string)+ which indicates the type of the change (currently only
785 "unspecified").
786
787 *Example:*
788 ---------------------------
789 { "change": "unspecified" }
790 ---------------------------
791
792 === mode event
793
794 This event consists of a single serialized map containing a property
795 +change (string)+ which holds the name of current mode in use. The name
796 is the same as specified in config when creating a mode. The default
797 mode is simply named default. It contains a second property, +pango_markup+, which
798 defines whether pango markup shall be used for displaying this mode.
799
800 *Example:*
801 ---------------------------
802 {
803   "change": "default",
804   "pango_markup": true
805 }
806 ---------------------------
807
808 === window event
809
810 This event consists of a single serialized map containing a property
811 +change (string)+ which indicates the type of the change
812
813 * +new+ – the window has become managed by i3
814 * +close+ – the window has closed
815 * +focus+ – the window has received input focus
816 * +title+ – the window's title has changed
817 * +fullscreen_mode+ – the window has entered or exited fullscreen mode
818 * +move+ – the window has changed its position in the tree
819 * +floating+ – the window has transitioned to or from floating
820 * +urgent+ – the window has become urgent or lost its urgent status
821 * +mark+ – a mark has been added to or removed from the window
822
823 Additionally a +container (object)+ field will be present, which consists
824 of the window's parent container. Be aware that for the "new" event, the
825 container will hold the initial name of the newly reparented window (e.g.
826 if you run urxvt with a shell that changes the title, you will still at
827 this point get the window title as "urxvt").
828
829 *Example:*
830 ---------------------------
831 {
832  "change": "new",
833  "container": {
834   "id": 35569536,
835   "type": "con",
836   ...
837  }
838 }
839 ---------------------------
840
841 === barconfig_update event
842
843 This event consists of a single serialized map reporting on options from the
844 barconfig of the specified bar_id that were updated in i3. This event is the
845 same as a +GET_BAR_CONFIG+ reply for the bar with the given id.
846
847 === binding event
848
849 This event consists of a single serialized map reporting on the details of a
850 binding that ran a command because of user input. The +change (string)+ field
851 indicates what sort of binding event was triggered (right now it will always be
852 +"run"+ but may be expanded in the future).
853
854 The +binding (object)+ field contains details about the binding that was run:
855
856 command (string)::
857         The i3 command that is configured to run for this binding.
858 event_state_mask (array of strings)::
859         The group and modifier keys that were configured with this binding.
860 input_code (integer)::
861         If the binding was configured with +bindcode+, this will be the key code
862         that was given for the binding. If the binding is a mouse binding, it will be
863         the number of the mouse button that was pressed. Otherwise it will be 0.
864 symbol (string or null)::
865         If this is a keyboard binding that was configured with +bindsym+, this
866         field will contain the given symbol. Otherwise it will be +null+.
867 input_type (string)::
868         This will be +"keyboard"+ or +"mouse"+ depending on whether or not this was
869         a keyboard or a mouse binding.
870
871 *Example:*
872 ---------------------------
873 {
874  "change": "run",
875  "binding": {
876   "command": "nop",
877   "event_state_mask": [
878     "shift",
879     "ctrl"
880   ],
881   "input_code": 0,
882   "symbol": "t",
883   "input_type": "keyboard"
884  }
885 }
886 ---------------------------
887
888 === shutdown event
889
890 This event is triggered when the connection to the ipc is about to shutdown
891 because of a user action such as a +restart+ or +exit+ command. The +change
892 (string)+ field indicates why the ipc is shutting down. It can be either
893 +"restart"+ or +"exit"+.
894
895 *Example:*
896 ---------------------------
897 {
898  "change": "restart"
899 }
900 ---------------------------
901
902 === tick event
903
904 This event is triggered by a subscription to tick events or by a +SEND_TICK+
905 message.
906
907 *Example (upon subscription):*
908 --------------------------------------------------------------------------------
909 {
910  "first": true,
911  "payload": ""
912 }
913 --------------------------------------------------------------------------------
914
915 *Example (upon +SEND_TICK+ with a payload of +arbitrary string+):*
916 --------------------------------------------------------------------------------
917 {
918  "first": false,
919  "payload": "arbitrary string"
920 }
921 --------------------------------------------------------------------------------
922
923 == See also (existing libraries)
924
925 [[libraries]]
926
927 For some languages, libraries are available (so you don’t have to implement
928 all this on your own). This list names some (if you wrote one, please let me
929 know):
930
931 C::
932         * i3 includes a headerfile +i3/ipc.h+ which provides you all constants.
933         * https://github.com/acrisci/i3ipc-glib
934 C++::
935         * https://github.com/drmgc/i3ipcpp
936 Go::
937         * https://github.com/mdirkse/i3ipc-go
938         * https://github.com/i3/go-i3
939 JavaScript::
940         * https://github.com/acrisci/i3ipc-gjs
941 Lua::
942         * https://github.com/acrisci/i3ipc-lua
943 Perl::
944         * https://metacpan.org/module/AnyEvent::I3
945 Python::
946         * https://github.com/acrisci/i3ipc-python
947         * https://github.com/whitelynx/i3ipc (not maintained)
948         * https://github.com/ziberna/i3-py (not maintained)
949 Ruby::
950         * https://github.com/veelenga/i3ipc-ruby
951         * https://github.com/badboy/i3-ipc (not maintained)
952 Rust::
953         * https://github.com/tmerr/i3ipc-rs
954 OCaml::
955         * https://github.com/Armael/ocaml-i3ipc
956
957 == Appendix A: Detecting byte order in memory-safe languages
958
959 Some programming languages such as Go don’t offer a way to serialize data in the
960 native byte order of the machine they’re running on without resorting to tricks
961 involving the +unsafe+ package.
962
963 The following technique can be used (and will not be broken by changes to i3) to
964 detect the byte order i3 is using:
965
966 1. The byte order dependent fields of an IPC message are message type and
967    payload length.
968
969    * The message type +RUN_COMMAND+ (0) is the same in big and little endian, so
970      we can use it in either byte order to elicit a reply from i3.
971
972    * The payload length 65536 + 256 (+0x00 01 01 00+) is the same in big and
973      little endian, and also small enough to not worry about memory allocations
974      of that size. We must use payloads of length 65536 + 256 in every message
975      we send, so that i3 will be able to read the entire message regardless of
976      the byte order it uses.
977
978 2. Send a big endian encoded message of type +SUBSCRIBE+ (2) with payload `[]`
979    followed by 65536 + 256 - 2 +SPACE+ (ASCII 0x20) bytes.
980
981    * If i3 is running in big endian, this message is treated as a noop,
982      resulting in a +SUBSCRIBE+ reply with payload `{"success":true}`
983      footnote:[A small payload is important: that way, we circumvent dealing
984      with UNIX domain socket buffer sizes, whose size depends on the
985      implementation/operating system. Exhausting such a buffer results in an i3
986      deadlock unless you concurrently read and write, which — depending on the
987      programming language — makes the technique much more complicated.].
988
989    * If i3 is running in little endian, this message is read in its entirety due
990      to the byte order independent payload length, then
991      https://github.com/i3/i3/blob/d726d09d496577d1c337a4b97486f2c9fbc914f1/src/ipc.c#L1188[silently
992      discarded] due to the unknown message type.
993
994 3. Send a byte order independent message, i.e. type +RUN_COMMAND+ (0) with
995    payload +nop byte order detection. padding:+, padded to 65536 + 256 bytes
996    with +a+ (ASCII 0x61) bytes. i3 will reply to this message with a reply of
997    type +COMMAND+ (0).
998
999    * The human-readable prefix is in there to not confuse readers of the i3 log.
1000
1001    * This messages serves as a synchronization primitive so that we know whether
1002      i3 discarded the +SUBSCRIBE+ message or didn’t answer it yet.
1003
1004 4. Receive a message header from i3, decoding the message type as big endian.
1005
1006    * If the message’s reply type is +COMMAND+ (0), i3 is running in little
1007      endian (because the +SUBSCRIBE+ message was discarded). Decode the message
1008      payload length as little endian, receive the message payload.
1009
1010    * If the message’s reply type is anything else, i3 is running in big endian
1011      (because our big endian encoded +SUBSCRIBE+ message was answered). Decode
1012      the message payload length in big endian, receive the message
1013      payload. Then, receive the pending +COMMAND+ message reply in big endian.
1014
1015 5. From here on out, send/receive all messages using the detected byte order.
1016
1017 Find an example implementation of this technique in
1018 https://github.com/i3/go-i3/blob/master/byteorder.go