]> git.sur5r.net Git - i3/i3/blob - docs/ipc
Merge pull request #3329 from lasers/next
[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 window_properties (map)::
332         X11 window properties title, instance, class, window_role and transient_for.
333 urgent (bool)::
334         Whether this container (window, split container, floating container or
335         workspace) has the urgency hint set, directly or indirectly. All parent
336         containers up until the workspace container will be marked urgent if they
337         have at least one urgent child.
338 focused (bool)::
339         Whether this container is currently focused.
340 focus (array of integer)::
341         List of child node IDs (see +nodes+, +floating_nodes+ and +id+) in focus
342         order. Traversing the tree by following the first entry in this array
343         will result in eventually reaching the one node with +focused+ set to
344         true.
345 nodes (array of node)::
346         The tiling (i.e. non-floating) child containers of this node.
347 floating_nodes (array of node)::
348         The floating child containers of this node. Only non-empty on nodes with
349         type +workspace+.
350
351 Please note that in the following example, I have left out some keys/values
352 which are not relevant for the type of the node. Otherwise, the example would
353 be by far too long (it already is quite long, despite showing only 1 window and
354 one dock window).
355
356 It is useful to have an overview of the structure before taking a look at the
357 JSON dump:
358
359 * root
360 ** LVDS1
361 *** topdock
362 *** content
363 **** workspace 1
364 ***** window 1
365 *** bottomdock
366 **** dock window 1
367 ** VGA1
368
369 *Example:*
370 -----------------------
371 {
372  "id": 6875648,
373  "name": "root",
374  "rect": {
375    "x": 0,
376    "y": 0,
377    "width": 1280,
378    "height": 800
379  },
380  "nodes": [
381
382    {
383     "id": 6878320,
384     "name": "LVDS1",
385     "layout": "output",
386     "rect": {
387       "x": 0,
388       "y": 0,
389       "width": 1280,
390       "height": 800
391     },
392     "nodes": [
393
394       {
395        "id": 6878784,
396        "name": "topdock",
397        "layout": "dockarea",
398        "orientation": "vertical",
399        "rect": {
400          "x": 0,
401          "y": 0,
402          "width": 1280,
403          "height": 0
404        }
405       },
406
407       {
408        "id": 6879344,
409        "name": "content",
410        "rect": {
411          "x": 0,
412          "y": 0,
413          "width": 1280,
414          "height": 782
415        },
416        "nodes": [
417
418          {
419           "id": 6880464,
420           "name": "1",
421           "orientation": "horizontal",
422           "rect": {
423             "x": 0,
424             "y": 0,
425             "width": 1280,
426             "height": 782
427           },
428           "window_properties": {
429             "class": "Evince",
430             "instance": "evince",
431             "title": "Properties",
432             "transient_for": 52428808
433           },
434           "floating_nodes": [],
435           "nodes": [
436
437             {
438              "id": 6929968,
439              "name": "#aa0000",
440              "border": "normal",
441              "percent": 1,
442              "rect": {
443                "x": 0,
444                "y": 18,
445                "width": 1280,
446                "height": 782
447              }
448             }
449
450           ]
451          }
452
453        ]
454       },
455
456       {
457        "id": 6880208,
458        "name": "bottomdock",
459        "layout": "dockarea",
460        "orientation": "vertical",
461        "rect": {
462          "x": 0,
463          "y": 782,
464          "width": 1280,
465          "height": 18
466        },
467        "nodes": [
468
469          {
470           "id": 6931312,
471           "name": "#00aa00",
472           "percent": 1,
473           "rect": {
474             "x": 0,
475             "y": 782,
476             "width": 1280,
477             "height": 18
478           }
479          }
480
481        ]
482       }
483     ]
484    }
485  ]
486 }
487 ------------------------
488
489 [[_marks_reply]]
490 === MARKS reply
491
492 The reply consists of a single array of strings for each container that has a
493 mark. A mark can only be set on one container, so the array is unique.
494 The order of that array is undefined.
495
496 If no window has a mark the response will be the empty array [].
497
498 [[_bar_config_reply]]
499 === BAR_CONFIG reply
500
501 This can be used by third-party workspace bars (especially i3bar, but others
502 are free to implement compatible alternatives) to get the +bar+ block
503 configuration from i3.
504
505 Depending on the input, the reply is either:
506
507 empty input::
508         An array of configured bar IDs
509 Bar ID::
510         A JSON map containing the configuration for the specified bar.
511
512 Each bar configuration has the following properties:
513
514 id (string)::
515         The ID for this bar. Included in case you request multiple
516         configurations and want to differentiate the different replies.
517 mode (string)::
518         Either +dock+ (the bar sets the dock window type) or +hide+ (the bar
519         does not show unless a specific key is pressed).
520 position (string)::
521         Either +bottom+ or +top+ at the moment.
522 status_command (string)::
523         Command which will be run to generate a statusline. Each line on stdout
524         of this command will be displayed in the bar. At the moment, no
525         formatting is supported.
526 font (string)::
527         The font to use for text on the bar.
528 workspace_buttons (boolean)::
529         Display workspace buttons or not? Defaults to true.
530 binding_mode_indicator (boolean)::
531         Display the mode indicator or not? Defaults to true.
532 verbose (boolean)::
533         Should the bar enable verbose output for debugging? Defaults to false.
534 colors (map)::
535         Contains key/value pairs of colors. Each value is a color code in hex,
536         formatted #rrggbb (like in HTML).
537
538 The following colors can be configured at the moment:
539
540 background::
541         Background color of the bar.
542 statusline::
543         Text color to be used for the statusline.
544 separator::
545         Text color to be used for the separator.
546 focused_background::
547         Background color of the bar on the currently focused monitor output.
548 focused_statusline::
549         Text color to be used for the statusline on the currently focused
550         monitor output.
551 focused_separator::
552         Text color to be used for the separator on the currently focused
553         monitor output.
554 focused_workspace_text/focused_workspace_bg/focused_workspace_border::
555         Text/background/border color for a workspace button when the workspace
556         has focus.
557 active_workspace_text/active_workspace_bg/active_workspace_border::
558         Text/background/border color for a workspace button when the workspace
559         is active (visible) on some output, but the focus is on another one.
560         You can only tell this apart from the focused workspace when you are
561         using multiple monitors.
562 inactive_workspace_text/inactive_workspace_bg/inactive_workspace_border::
563         Text/background/border color for a workspace button when the workspace
564         does not have focus and is not active (visible) on any output. This
565         will be the case for most workspaces.
566 urgent_workspace_text/urgent_workspace_bg/urgent_workspace_border::
567         Text/background/border color for workspaces which contain at least one
568         window with the urgency hint set.
569 binding_mode_text/binding_mode_bg/binding_mode_border::
570         Text/background/border color for the binding mode indicator.
571
572
573 *Example of configured bars:*
574 --------------
575 ["bar-bxuqzf"]
576 --------------
577
578 *Example of bar configuration:*
579 --------------
580 {
581  "id": "bar-bxuqzf",
582  "mode": "dock",
583  "position": "bottom",
584  "status_command": "i3status",
585  "font": "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1",
586  "workspace_buttons": true,
587  "binding_mode_indicator": true,
588  "verbose": false,
589  "colors": {
590    "background": "#c0c0c0",
591    "statusline": "#00ff00",
592    "focused_workspace_text": "#ffffff",
593    "focused_workspace_bg": "#000000"
594  }
595 }
596 --------------
597
598 [[_version_reply]]
599 === VERSION reply
600
601 The reply consists of a single JSON dictionary with the following keys:
602
603 major (integer)::
604         The major version of i3, such as +4+.
605 minor (integer)::
606         The minor version of i3, such as +2+. Changes in the IPC interface (new
607         features) will only occur with new minor (or major) releases. However,
608         bugfixes might be introduced in patch releases, too.
609 patch (integer)::
610         The patch version of i3, such as +1+ (when the complete version is
611         +4.2.1+). For versions such as +4.2+, patch will be set to +0+.
612 human_readable (string)::
613         A human-readable version of i3 containing the precise git version,
614         build date and branch name. When you need to display the i3 version to
615         your users, use the human-readable version whenever possible (since
616         this is what +i3 --version+ displays, too).
617 loaded_config_file_name (string)::
618         The current config path.
619
620 *Example:*
621 -------------------
622 {
623    "human_readable" : "4.2-169-gf80b877 (2012-08-05, branch \"next\")",
624    "loaded_config_file_name" : "/home/hwangcc23/.i3/config",
625    "minor" : 2,
626    "patch" : 0,
627    "major" : 4
628 }
629 -------------------
630
631 [[_binding_modes_reply]]
632 === BINDING_MODES reply
633
634 The reply consists of an array of all currently configured binding modes.
635
636 *Example:*
637 ---------------------
638 ["default", "resize"]
639 ---------------------
640
641 [[_config_reply]]
642 === CONFIG reply
643
644 The config reply is a map which currently only contains the "config" member,
645 which is a string containing the config file as loaded by i3 most recently.
646
647 *Example:*
648 -------------------
649 { "config": "font pango:monospace 8\nbindsym Mod4+q exit\n" }
650 -------------------
651
652 [[_tick_reply]]
653 === TICK reply
654
655 The reply is a map containing the "success" member. After the reply was
656 received, the tick event has been written to all IPC connections which subscribe
657 to tick events. UNIX sockets are usually buffered, but you can be certain that
658 once you receive the tick event you just triggered, you must have received all
659 events generated prior to the +SEND_TICK+ message (happened-before relation).
660
661 *Example:*
662 -------------------
663 { "success": true }
664 -------------------
665
666 [[_sync_reply]]
667 === SYNC reply
668
669 The reply is a map containing the "success" member. After the reply was
670 received, the https://i3wm.org/docs/testsuite.html#i3_sync[i3 sync message] was
671 responded to.
672
673 *Example:*
674 -------------------
675 { "success": true }
676 -------------------
677
678 == Events
679
680 [[events]]
681
682 To get informed when certain things happen in i3, clients can subscribe to
683 events. Events consist of a name (like "workspace") and an event reply type
684 (like I3_IPC_EVENT_WORKSPACE). The events sent by i3 are in the same format
685 as replies to specific commands. However, the highest bit of the message type
686 is set to 1 to indicate that this is an event reply instead of a normal reply.
687
688 Caveat: As soon as you subscribe to an event, it is not guaranteed any longer
689 that the requests to i3 are processed in order. This means, the following
690 situation can happen: You send a GET_WORKSPACES request but you receive a
691 "workspace" event before receiving the reply to GET_WORKSPACES. If your
692 program does not want to cope which such kinds of race conditions (an
693 event based library may not have a problem here), I suggest you create a
694 separate connection to receive events.
695
696 === Subscribing to events
697
698 By sending a message of type SUBSCRIBE with a JSON-encoded array as payload
699 you can register to an event.
700
701 *Example:*
702 ---------------------------------
703 type: SUBSCRIBE
704 payload: [ "workspace", "output" ]
705 ---------------------------------
706
707
708 === Available events
709
710 The numbers in parenthesis is the event type (keep in mind that you need to
711 strip the highest bit first).
712
713 workspace (0)::
714         Sent when the user switches to a different workspace, when a new
715         workspace is initialized or when a workspace is removed (because the
716         last client vanished).
717 output (1)::
718         Sent when RandR issues a change notification (of either screens,
719         outputs, CRTCs or output properties).
720 mode (2)::
721         Sent whenever i3 changes its binding mode.
722 window (3)::
723         Sent when a client's window is successfully reparented (that is when i3
724         has finished fitting it into a container), when a window received input
725         focus or when certain properties of the window have changed.
726 barconfig_update (4)::
727     Sent when the hidden_state or mode field in the barconfig of any bar
728     instance was updated and when the config is reloaded.
729 binding (5)::
730         Sent when a configured command binding is triggered with the keyboard or
731         mouse
732 shutdown (6)::
733         Sent when the ipc shuts down because of a restart or exit by user command
734 tick (7)::
735         Sent when the ipc client subscribes to the tick event (with +"first":
736         true+) or when any ipc client sends a SEND_TICK message (with +"first":
737         false+).
738
739 *Example:*
740 --------------------------------------------------------------------
741 # the appropriate 4 bytes read from the socket are stored in $input
742
743 # unpack a 32-bit unsigned integer
744 my $message_type = unpack("L", $input);
745
746 # check if the highest bit is 1
747 my $is_event = (($message_type >> 31) == 1);
748
749 # use the other bits
750 my $event_type = ($message_type & 0x7F);
751
752 if ($is_event) {
753   say "Received event of type $event_type";
754 }
755 --------------------------------------------------------------------
756
757 === workspace event
758
759 This event consists of a single serialized map containing a property
760 +change (string)+ which indicates the type of the change ("focus", "init",
761 "empty", "urgent", "reload", "rename", "restored", "move"). A
762 +current (object)+ property will be present with the affected workspace
763 whenever the type of event affects a workspace (otherwise, it will be +null).
764
765 When the change is "focus", an +old (object)+ property will be present with the
766 previous workspace.  When the first switch occurs (when i3 focuses the
767 workspace visible at the beginning) there is no previous workspace, and the
768 +old+ property will be set to +null+.  Also note that if the previous is empty
769 it will get destroyed when switching, but will still be present in the "old"
770 property.
771
772 *Example:*
773 ---------------------
774 {
775  "change": "focus",
776  "current": {
777   "id": 28489712,
778   "type": "workspace",
779   ...
780  }
781  "old": {
782   "id": 28489715,
783   "type": "workspace",
784   ...
785  }
786 }
787 ---------------------
788
789 === output event
790
791 This event consists of a single serialized map containing a property
792 +change (string)+ which indicates the type of the change (currently only
793 "unspecified").
794
795 *Example:*
796 ---------------------------
797 { "change": "unspecified" }
798 ---------------------------
799
800 === mode event
801
802 This event consists of a single serialized map containing a property
803 +change (string)+ which holds the name of current mode in use. The name
804 is the same as specified in config when creating a mode. The default
805 mode is simply named default. It contains a second property, +pango_markup+, which
806 defines whether pango markup shall be used for displaying this mode.
807
808 *Example:*
809 ---------------------------
810 {
811   "change": "default",
812   "pango_markup": true
813 }
814 ---------------------------
815
816 === window event
817
818 This event consists of a single serialized map containing a property
819 +change (string)+ which indicates the type of the change
820
821 * +new+ – the window has become managed by i3
822 * +close+ – the window has closed
823 * +focus+ – the window has received input focus
824 * +title+ – the window's title has changed
825 * +fullscreen_mode+ – the window has entered or exited fullscreen mode
826 * +move+ – the window has changed its position in the tree
827 * +floating+ – the window has transitioned to or from floating
828 * +urgent+ – the window has become urgent or lost its urgent status
829 * +mark+ – a mark has been added to or removed from the window
830
831 Additionally a +container (object)+ field will be present, which consists
832 of the window's parent container. Be aware that for the "new" event, the
833 container will hold the initial name of the newly reparented window (e.g.
834 if you run urxvt with a shell that changes the title, you will still at
835 this point get the window title as "urxvt").
836
837 *Example:*
838 ---------------------------
839 {
840  "change": "new",
841  "container": {
842   "id": 35569536,
843   "type": "con",
844   ...
845  }
846 }
847 ---------------------------
848
849 === barconfig_update event
850
851 This event consists of a single serialized map reporting on options from the
852 barconfig of the specified bar_id that were updated in i3. This event is the
853 same as a +GET_BAR_CONFIG+ reply for the bar with the given id.
854
855 === binding event
856
857 This event consists of a single serialized map reporting on the details of a
858 binding that ran a command because of user input. The +change (string)+ field
859 indicates what sort of binding event was triggered (right now it will always be
860 +"run"+ but may be expanded in the future).
861
862 The +binding (object)+ field contains details about the binding that was run:
863
864 command (string)::
865         The i3 command that is configured to run for this binding.
866 event_state_mask (array of strings)::
867         The group and modifier keys that were configured with this binding.
868 input_code (integer)::
869         If the binding was configured with +bindcode+, this will be the key code
870         that was given for the binding. If the binding is a mouse binding, it will be
871         the number of the mouse button that was pressed. Otherwise it will be 0.
872 symbol (string or null)::
873         If this is a keyboard binding that was configured with +bindsym+, this
874         field will contain the given symbol. Otherwise it will be +null+.
875 input_type (string)::
876         This will be +"keyboard"+ or +"mouse"+ depending on whether or not this was
877         a keyboard or a mouse binding.
878
879 *Example:*
880 ---------------------------
881 {
882  "change": "run",
883  "binding": {
884   "command": "nop",
885   "event_state_mask": [
886     "shift",
887     "ctrl"
888   ],
889   "input_code": 0,
890   "symbol": "t",
891   "input_type": "keyboard"
892  }
893 }
894 ---------------------------
895
896 === shutdown event
897
898 This event is triggered when the connection to the ipc is about to shutdown
899 because of a user action such as a +restart+ or +exit+ command. The +change
900 (string)+ field indicates why the ipc is shutting down. It can be either
901 +"restart"+ or +"exit"+.
902
903 *Example:*
904 ---------------------------
905 {
906  "change": "restart"
907 }
908 ---------------------------
909
910 === tick event
911
912 This event is triggered by a subscription to tick events or by a +SEND_TICK+
913 message.
914
915 *Example (upon subscription):*
916 --------------------------------------------------------------------------------
917 {
918  "first": true,
919  "payload": ""
920 }
921 --------------------------------------------------------------------------------
922
923 *Example (upon +SEND_TICK+ with a payload of +arbitrary string+):*
924 --------------------------------------------------------------------------------
925 {
926  "first": false,
927  "payload": "arbitrary string"
928 }
929 --------------------------------------------------------------------------------
930
931 == See also (existing libraries)
932
933 [[libraries]]
934
935 For some languages, libraries are available (so you don’t have to implement
936 all this on your own). This list names some (if you wrote one, please let me
937 know):
938
939 C::
940         * i3 includes a headerfile +i3/ipc.h+ which provides you all constants.
941         * https://github.com/acrisci/i3ipc-glib
942 C++::
943         * https://github.com/drmgc/i3ipcpp
944 Go::
945         * https://github.com/mdirkse/i3ipc-go
946         * https://github.com/i3/go-i3
947 JavaScript::
948         * https://github.com/acrisci/i3ipc-gjs
949 Lua::
950         * https://github.com/acrisci/i3ipc-lua
951 Perl::
952         * https://metacpan.org/module/AnyEvent::I3
953 Python::
954         * https://github.com/acrisci/i3ipc-python
955         * https://github.com/whitelynx/i3ipc (not maintained)
956         * https://github.com/ziberna/i3-py (not maintained)
957 Ruby::
958         * https://github.com/veelenga/i3ipc-ruby
959         * https://github.com/badboy/i3-ipc (not maintained)
960 Rust::
961         * https://github.com/tmerr/i3ipc-rs
962 OCaml::
963         * https://github.com/Armael/ocaml-i3ipc
964
965 == Appendix A: Detecting byte order in memory-safe languages
966
967 Some programming languages such as Go don’t offer a way to serialize data in the
968 native byte order of the machine they’re running on without resorting to tricks
969 involving the +unsafe+ package.
970
971 The following technique can be used (and will not be broken by changes to i3) to
972 detect the byte order i3 is using:
973
974 1. The byte order dependent fields of an IPC message are message type and
975    payload length.
976
977    * The message type +RUN_COMMAND+ (0) is the same in big and little endian, so
978      we can use it in either byte order to elicit a reply from i3.
979
980    * The payload length 65536 + 256 (+0x00 01 01 00+) is the same in big and
981      little endian, and also small enough to not worry about memory allocations
982      of that size. We must use payloads of length 65536 + 256 in every message
983      we send, so that i3 will be able to read the entire message regardless of
984      the byte order it uses.
985
986 2. Send a big endian encoded message of type +SUBSCRIBE+ (2) with payload `[]`
987    followed by 65536 + 256 - 2 +SPACE+ (ASCII 0x20) bytes.
988
989    * If i3 is running in big endian, this message is treated as a noop,
990      resulting in a +SUBSCRIBE+ reply with payload `{"success":true}`
991      footnote:[A small payload is important: that way, we circumvent dealing
992      with UNIX domain socket buffer sizes, whose size depends on the
993      implementation/operating system. Exhausting such a buffer results in an i3
994      deadlock unless you concurrently read and write, which — depending on the
995      programming language — makes the technique much more complicated.].
996
997    * If i3 is running in little endian, this message is read in its entirety due
998      to the byte order independent payload length, then
999      https://github.com/i3/i3/blob/d726d09d496577d1c337a4b97486f2c9fbc914f1/src/ipc.c#L1188[silently
1000      discarded] due to the unknown message type.
1001
1002 3. Send a byte order independent message, i.e. type +RUN_COMMAND+ (0) with
1003    payload +nop byte order detection. padding:+, padded to 65536 + 256 bytes
1004    with +a+ (ASCII 0x61) bytes. i3 will reply to this message with a reply of
1005    type +COMMAND+ (0).
1006
1007    * The human-readable prefix is in there to not confuse readers of the i3 log.
1008
1009    * This messages serves as a synchronization primitive so that we know whether
1010      i3 discarded the +SUBSCRIBE+ message or didn’t answer it yet.
1011
1012 4. Receive a message header from i3, decoding the message type as big endian.
1013
1014    * If the message’s reply type is +COMMAND+ (0), i3 is running in little
1015      endian (because the +SUBSCRIBE+ message was discarded). Decode the message
1016      payload length as little endian, receive the message payload.
1017
1018    * If the message’s reply type is anything else, i3 is running in big endian
1019      (because our big endian encoded +SUBSCRIBE+ message was answered). Decode
1020      the message payload length in big endian, receive the message
1021      payload. Then, receive the pending +COMMAND+ message reply in big endian.
1022
1023 5. From here on out, send/receive all messages using the detected byte order.
1024
1025 Find an example implementation of this technique in
1026 https://github.com/i3/go-i3/blob/master/byteorder.go