]> git.sur5r.net Git - i3/i3.github.io/blob - _docs/ipc
update docs for 4.14
[i3/i3.github.io] / _docs / ipc
1 IPC interface (interprocess communication)
2 ==========================================
3 Michael Stapelberg <michael@i3wm.org>
4 October 2014
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 are the following:
54
55 COMMAND (0)::
56         The payload of the message is a command for i3 (like the commands you
57         can bind to keys in the configuration file) and will be executed
58         directly after receiving it.
59 GET_WORKSPACES (1)::
60         Gets the current workspaces. The reply will be a JSON-encoded list of
61         workspaces (see the reply section).
62 SUBSCRIBE (2)::
63         Subscribes your connection to certain events. See <<events>> for a
64         description of this message and the concept of events.
65 GET_OUTPUTS (3)::
66         Gets the current outputs. The reply will be a JSON-encoded list of outputs
67         (see the reply section).
68 GET_TREE (4)::
69         Gets the layout tree. i3 uses a tree as data structure which includes
70         every container. The reply will be the JSON-encoded tree (see the reply
71         section).
72 GET_MARKS (5)::
73         Gets a list of marks (identifiers for containers to easily jump to them
74         later). The reply will be a JSON-encoded list of window marks (see
75         reply section).
76 GET_BAR_CONFIG (6)::
77         Gets the configuration (as JSON map) of the workspace bar with the
78         given ID. If no ID is provided, an array with all configured bar IDs is
79         returned instead.
80 GET_VERSION (7)::
81         Gets the version of i3. The reply will be a JSON-encoded dictionary
82         with the major, minor, patch and human-readable version.
83 GET_BINDING_MODES (8)::
84         Gets a list of currently configured binding modes.
85
86 So, a typical message could look like this:
87 --------------------------------------------------
88 "i3-ipc" <message length> <message type> <payload>
89 --------------------------------------------------
90
91 Or, as a hexdump:
92 ------------------------------------------------------------------------------
93 00000000  69 33 2d 69 70 63 04 00  00 00 00 00 00 00 65 78  |i3-ipc........ex|
94 00000010  69 74                                             |it|
95 ------------------------------------------------------------------------------
96
97 To generate and send such a message, you could use the following code in Perl:
98 ------------------------------------------------------------
99 sub format_ipc_command {
100     my ($msg) = @_;
101     my $len;
102     # Get the real byte count (vs. amount of characters)
103     { use bytes; $len = length($msg); }
104     return "i3-ipc" . pack("LL", $len, 0) . $msg;
105 }
106
107 $sock->write(format_ipc_command("exit"));
108 ------------------------------------------------------------------------------
109
110 == Receiving replies from i3
111
112 Replies from i3 usually consist of a simple string (the length of the string
113 is the message_length, so you can consider them length-prefixed) which in turn
114 contain the JSON serialization of a data structure. For example, the
115 GET_WORKSPACES message returns an array of workspaces (each workspace is a map
116 with certain attributes).
117
118 === Reply format
119
120 The reply format is identical to the normal message format. There also is
121 the magic string, then the message length, then the message type and the
122 payload.
123
124 The following reply types are implemented:
125
126 COMMAND (0)::
127         Confirmation/Error code for the COMMAND message.
128 WORKSPACES (1)::
129         Reply to the GET_WORKSPACES message.
130 SUBSCRIBE (2)::
131         Confirmation/Error code for the SUBSCRIBE message.
132 OUTPUTS (3)::
133         Reply to the GET_OUTPUTS message.
134 TREE (4)::
135         Reply to the GET_TREE message.
136 MARKS (5)::
137         Reply to the GET_MARKS message.
138 BAR_CONFIG (6)::
139         Reply to the GET_BAR_CONFIG message.
140 VERSION (7)::
141         Reply to the GET_VERSION message.
142 BINDING_MODES (8)::
143         Reply to the GET_BINDING_MODES message.
144
145 === COMMAND reply
146
147 The reply consists of a list of serialized maps for each command that was
148 parsed. Each has the property +success (bool)+ and may also include a
149 human-readable error message in the property +error (string)+.
150
151 *Example:*
152 -------------------
153 [{ "success": true }]
154 -------------------
155
156 === WORKSPACES reply
157
158 The reply consists of a serialized list of workspaces. Each workspace has the
159 following properties:
160
161 num (integer)::
162         The logical number of the workspace. Corresponds to the command
163         to switch to this workspace. For named workspaces, this will be -1.
164 name (string)::
165         The name of this workspace (by default num+1), as changed by the
166         user. Encoded in UTF-8.
167 visible (boolean)::
168         Whether this workspace is currently visible on an output (multiple
169         workspaces can be visible at the same time).
170 focused (boolean)::
171         Whether this workspace currently has the focus (only one workspace
172         can have the focus at the same time).
173 urgent (boolean)::
174         Whether a window on this workspace has the "urgent" flag set.
175 rect (map)::
176         The rectangle of this workspace (equals the rect of the output it
177         is on), consists of x, y, width, height.
178 output (string)::
179         The video output this workspace is on (LVDS1, VGA1, …).
180
181 *Example:*
182 -------------------
183 [
184  {
185   "num": 0,
186   "name": "1",
187   "visible": true,
188   "focused": true,
189   "urgent": false,
190   "rect": {
191    "x": 0,
192    "y": 0,
193    "width": 1280,
194    "height": 800
195   },
196   "output": "LVDS1"
197  },
198  {
199   "num": 1,
200   "name": "2",
201   "visible": false,
202   "focused": false,
203   "urgent": false,
204   "rect": {
205    "x": 0,
206    "y": 0,
207    "width": 1280,
208    "height": 800
209   },
210   "output": "LVDS1"
211  }
212 ]
213 -------------------
214
215 === SUBSCRIBE reply
216
217 The reply consists of a single serialized map. The only property is
218 +success (bool)+, indicating whether the subscription was successful (the
219 default) or whether a JSON parse error occurred.
220
221 *Example:*
222 -------------------
223 { "success": true }
224 -------------------
225
226 === OUTPUTS reply
227
228 The reply consists of a serialized list of outputs. Each output has the
229 following properties:
230
231 name (string)::
232         The name of this output (as seen in +xrandr(1)+). Encoded in UTF-8.
233 active (boolean)::
234         Whether this output is currently active (has a valid mode).
235 primary (boolean)::
236         Whether this output is currently the primary output.
237 current_workspace (string)::
238         The name of the current workspace that is visible on this output. +null+ if
239         the output is not active.
240 rect (map)::
241         The rectangle of this output (equals the rect of the output it
242         is on), consists of x, y, width, height.
243
244 *Example:*
245 -------------------
246 [
247  {
248   "name": "LVDS1",
249   "active": true,
250   "current_workspace": "4",
251   "rect": {
252    "x": 0,
253    "y": 0,
254    "width": 1280,
255    "height": 800
256   }
257  },
258  {
259   "name": "VGA1",
260   "active": true,
261   "current_workspace": "1",
262   "rect": {
263    "x": 1280,
264    "y": 0,
265    "width": 1280,
266    "height": 1024
267   }
268  }
269 ]
270 -------------------
271
272 === TREE reply
273
274 The reply consists of a serialized tree. Each node in the tree (representing
275 one container) has at least the properties listed below. While the nodes might
276 have more properties, please do not use any properties which are not documented
277 here. They are not yet finalized and will probably change!
278
279 id (integer)::
280         The internal ID (actually a C pointer value) of this container. Do not
281         make any assumptions about it. You can use it to (re-)identify and
282         address containers when talking to i3.
283 name (string)::
284         The internal name of this container. For all containers which are part
285         of the tree structure down to the workspace contents, this is set to a
286         nice human-readable name of the container.
287         For containers that have an X11 window, the content is the title
288         (_NET_WM_NAME property) of that window.
289         For all other containers, the content is not defined (yet).
290 type (string)::
291         Type of this container. Can be one of "root", "output", "con",
292         "floating_con", "workspace" or "dockarea".
293 border (string)::
294         Can be either "normal", "none" or "pixel", depending on the
295         container’s border style.
296 current_border_width (integer)::
297         Number of pixels of the border width.
298 layout (string)::
299         Can be either "splith", "splitv", "stacked", "tabbed", "dockarea" or
300         "output".
301         Other values might be possible in the future, should we add new
302         layouts.
303 orientation (string)::
304         Can be either "none" (for non-split containers), "horizontal" or
305         "vertical".
306         THIS FIELD IS OBSOLETE. It is still present, but your code should not
307         use it. Instead, rely on the layout field.
308 percent (float)::
309         The percentage which this container takes in its parent. A value of
310         +null+ means that the percent property does not make sense for this
311         container, for example for the root container.
312 rect (map)::
313         The absolute display coordinates for this container. Display
314         coordinates means that when you have two 1600x1200 monitors on a single
315         X11 Display (the standard way), the coordinates of the first window on
316         the second monitor are +{ "x": 1600, "y": 0, "width": 1600, "height":
317         1200 }+.
318 window_rect (map)::
319         The coordinates of the *actual client window* inside its container.
320         These coordinates are relative to the container and do not include the
321         window decoration (which is actually rendered on the parent container).
322         So, when using the +default+ layout, you will have a 2 pixel border on
323         each side, making the window_rect +{ "x": 2, "y": 0, "width": 632,
324         "height": 366 }+ (for example).
325 deco_rect (map)::
326         The coordinates of the *window decoration* inside its container. These
327         coordinates are relative to the container and do not include the actual
328         client window.
329 geometry (map)::
330         The original geometry the window specified when i3 mapped it. Used when
331         switching a window to floating mode, for example.
332 window (integer)::
333         The X11 window ID of the *actual client window* inside this container.
334         This field is set to null for split containers or otherwise empty
335         containers. This ID corresponds to what xwininfo(1) and other
336         X11-related tools display (usually in hex).
337 urgent (bool)::
338         Whether this container (window or workspace) has the urgency hint set.
339 focused (bool)::
340         Whether this container is currently focused.
341
342 Please note that in the following example, I have left out some keys/values
343 which are not relevant for the type of the node. Otherwise, the example would
344 be by far too long (it already is quite long, despite showing only 1 window and
345 one dock window).
346
347 It is useful to have an overview of the structure before taking a look at the
348 JSON dump:
349
350 * root
351 ** LVDS1
352 *** topdock
353 *** content
354 **** workspace 1
355 ***** window 1
356 *** bottomdock
357 **** dock window 1
358 ** VGA1
359
360 *Example:*
361 -----------------------
362 {
363  "id": 6875648,
364  "name": "root",
365  "rect": {
366    "x": 0,
367    "y": 0,
368    "width": 1280,
369    "height": 800
370  },
371  "nodes": [
372
373    {
374     "id": 6878320,
375     "name": "LVDS1",
376     "layout": "output",
377     "rect": {
378       "x": 0,
379       "y": 0,
380       "width": 1280,
381       "height": 800
382     },
383     "nodes": [
384
385       {
386        "id": 6878784,
387        "name": "topdock",
388        "layout": "dockarea",
389        "orientation": "vertical",
390        "rect": {
391          "x": 0,
392          "y": 0,
393          "width": 1280,
394          "height": 0
395        }
396       },
397
398       {
399        "id": 6879344,
400        "name": "content",
401        "rect": {
402          "x": 0,
403          "y": 0,
404          "width": 1280,
405          "height": 782
406        },
407        "nodes": [
408
409          {
410           "id": 6880464,
411           "name": "1",
412           "orientation": "horizontal",
413           "rect": {
414             "x": 0,
415             "y": 0,
416             "width": 1280,
417             "height": 782
418           },
419           "floating_nodes": [],
420           "nodes": [
421
422             {
423              "id": 6929968,
424              "name": "#aa0000",
425              "border": "normal",
426              "percent": 1,
427              "rect": {
428                "x": 0,
429                "y": 18,
430                "width": 1280,
431                "height": 782
432              }
433             }
434
435           ]
436          }
437
438        ]
439       },
440
441       {
442        "id": 6880208,
443        "name": "bottomdock",
444        "layout": "dockarea",
445        "orientation": "vertical",
446        "rect": {
447          "x": 0,
448          "y": 782,
449          "width": 1280,
450          "height": 18
451        },
452        "nodes": [
453
454          {
455           "id": 6931312,
456           "name": "#00aa00",
457           "percent": 1,
458           "rect": {
459             "x": 0,
460             "y": 782,
461             "width": 1280,
462             "height": 18
463           }
464          }
465
466        ]
467       }
468     ]
469    }
470  ]
471 }
472 ------------------------
473
474 === MARKS reply
475
476 The reply consists of a single array of strings for each container that has a
477 mark. A mark can only be set on one container, so the array is unique.
478 The order of that array is undefined.
479
480 If no window has a mark the response will be the empty array [].
481
482 === BAR_CONFIG reply
483
484 This can be used by third-party workspace bars (especially i3bar, but others
485 are free to implement compatible alternatives) to get the +bar+ block
486 configuration from i3.
487
488 Depending on the input, the reply is either:
489
490 empty input::
491         An array of configured bar IDs
492 Bar ID::
493         A JSON map containing the configuration for the specified bar.
494
495 Each bar configuration has the following properties:
496
497 id (string)::
498         The ID for this bar. Included in case you request multiple
499         configurations and want to differentiate the different replies.
500 mode (string)::
501         Either +dock+ (the bar sets the dock window type) or +hide+ (the bar
502         does not show unless a specific key is pressed).
503 position (string)::
504         Either +bottom+ or +top+ at the moment.
505 status_command (string)::
506         Command which will be run to generate a statusline. Each line on stdout
507         of this command will be displayed in the bar. At the moment, no
508         formatting is supported.
509 font (string)::
510         The font to use for text on the bar.
511 workspace_buttons (boolean)::
512         Display workspace buttons or not? Defaults to true.
513 binding_mode_indicator (boolean)::
514         Display the mode indicator or not? Defaults to true.
515 verbose (boolean)::
516         Should the bar enable verbose output for debugging? Defaults to false.
517 colors (map)::
518         Contains key/value pairs of colors. Each value is a color code in hex,
519         formatted #rrggbb (like in HTML).
520
521 The following colors can be configured at the moment:
522
523 background::
524         Background color of the bar.
525 statusline::
526         Text color to be used for the statusline.
527 separator::
528         Text color to be used for the separator.
529 focused_background::
530         Background color of the bar on the currently focused monitor output.
531 focused_statusline::
532         Text color to be used for the statusline on the currently focused
533         monitor output.
534 focused_separator::
535         Text color to be used for the separator on the currently focused
536         monitor output.
537 focused_workspace_text/focused_workspace_bg/focused_workspace_border::
538         Text/background/border color for a workspace button when the workspace
539         has focus.
540 active_workspace_text/active_workspace_bg/active_workspace_border::
541         Text/background/border color for a workspace button when the workspace
542         is active (visible) on some output, but the focus is on another one.
543         You can only tell this apart from the focused workspace when you are
544         using multiple monitors.
545 inactive_workspace_text/inactive_workspace_bg/inactive_workspace_border::
546         Text/background/border color for a workspace button when the workspace
547         does not have focus and is not active (visible) on any output. This
548         will be the case for most workspaces.
549 urgent_workspace_text/urgent_workspace_bg/urgent_workspace_border::
550         Text/background/border color for workspaces which contain at least one
551         window with the urgency hint set.
552 binding_mode_text/binding_mode_bg/binding_mode_border::
553         Text/background/border color for the binding mode indicator.
554
555
556 *Example of configured bars:*
557 --------------
558 ["bar-bxuqzf"]
559 --------------
560
561 *Example of bar configuration:*
562 --------------
563 {
564  "id": "bar-bxuqzf",
565  "mode": "dock",
566  "position": "bottom",
567  "status_command": "i3status",
568  "font": "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1",
569  "workspace_buttons": true,
570  "binding_mode_indicator": true,
571  "verbose": false,
572  "colors": {
573    "background": "#c0c0c0",
574    "statusline": "#00ff00",
575    "focused_workspace_text": "#ffffff",
576    "focused_workspace_bg": "#000000"
577  }
578 }
579 --------------
580
581 === VERSION reply
582
583 The reply consists of a single JSON dictionary with the following keys:
584
585 major (integer)::
586         The major version of i3, such as +4+.
587 minor (integer)::
588         The minor version of i3, such as +2+. Changes in the IPC interface (new
589         features) will only occur with new minor (or major) releases. However,
590         bugfixes might be introduced in patch releases, too.
591 patch (integer)::
592         The patch version of i3, such as +1+ (when the complete version is
593         +4.2.1+). For versions such as +4.2+, patch will be set to +0+.
594 human_readable (string)::
595         A human-readable version of i3 containing the precise git version,
596         build date and branch name. When you need to display the i3 version to
597         your users, use the human-readable version whenever possible (since
598         this is what +i3 --version+ displays, too).
599 loaded_config_file_name (string)::
600         The current config path.
601
602 *Example:*
603 -------------------
604 {
605    "human_readable" : "4.2-169-gf80b877 (2012-08-05, branch \"next\")",
606    "loaded_config_file_name" : "/home/hwangcc23/.i3/config",
607    "minor" : 2,
608    "patch" : 0,
609    "major" : 4
610 }
611 -------------------
612
613 === BINDING_MODES reply
614
615 The reply consists of an array of all currently configured binding modes.
616
617 *Example:*
618 ---------------------
619 ["default", "resize"]
620 ---------------------
621
622 == Events
623
624 [[events]]
625
626 To get informed when certain things happen in i3, clients can subscribe to
627 events. Events consist of a name (like "workspace") and an event reply type
628 (like I3_IPC_EVENT_WORKSPACE). The events sent by i3 are in the same format
629 as replies to specific commands. However, the highest bit of the message type
630 is set to 1 to indicate that this is an event reply instead of a normal reply.
631
632 Caveat: As soon as you subscribe to an event, it is not guaranteed any longer
633 that the requests to i3 are processed in order. This means, the following
634 situation can happen: You send a GET_WORKSPACES request but you receive a
635 "workspace" event before receiving the reply to GET_WORKSPACES. If your
636 program does not want to cope which such kinds of race conditions (an
637 event based library may not have a problem here), I suggest you create a
638 separate connection to receive events.
639
640 === Subscribing to events
641
642 By sending a message of type SUBSCRIBE with a JSON-encoded array as payload
643 you can register to an event.
644
645 *Example:*
646 ---------------------------------
647 type: SUBSCRIBE
648 payload: [ "workspace", "output" ]
649 ---------------------------------
650
651
652 === Available events
653
654 The numbers in parenthesis is the event type (keep in mind that you need to
655 strip the highest bit first).
656
657 workspace (0)::
658         Sent when the user switches to a different workspace, when a new
659         workspace is initialized or when a workspace is removed (because the
660         last client vanished).
661 output (1)::
662         Sent when RandR issues a change notification (of either screens,
663         outputs, CRTCs or output properties).
664 mode (2)::
665         Sent whenever i3 changes its binding mode.
666 window (3)::
667         Sent when a client's window is successfully reparented (that is when i3
668         has finished fitting it into a container), when a window received input
669         focus or when certain properties of the window have changed.
670 barconfig_update (4)::
671     Sent when the hidden_state or mode field in the barconfig of any bar
672     instance was updated and when the config is reloaded.
673 binding (5)::
674         Sent when a configured command binding is triggered with the keyboard or
675         mouse
676 shutdown (6)::
677         Sent when the ipc shuts down because of a restart or exit by user command
678
679 *Example:*
680 --------------------------------------------------------------------
681 # the appropriate 4 bytes read from the socket are stored in $input
682
683 # unpack a 32-bit unsigned integer
684 my $message_type = unpack("L", $input);
685
686 # check if the highest bit is 1
687 my $is_event = (($message_type >> 31) == 1);
688
689 # use the other bits
690 my $event_type = ($message_type & 0x7F);
691
692 if ($is_event) {
693   say "Received event of type $event_type";
694 }
695 --------------------------------------------------------------------
696
697 === workspace event
698
699 This event consists of a single serialized map containing a property
700 +change (string)+ which indicates the type of the change ("focus", "init",
701 "empty", "urgent", "reload", "rename", "restored", "move"). A
702 +current (object)+ property will be present with the affected workspace
703 whenever the type of event affects a workspace (otherwise, it will be +null).
704
705 When the change is "focus", an +old (object)+ property will be present with the
706 previous workspace.  When the first switch occurs (when i3 focuses the
707 workspace visible at the beginning) there is no previous workspace, and the
708 +old+ property will be set to +null+.  Also note that if the previous is empty
709 it will get destroyed when switching, but will still be present in the "old"
710 property.
711
712 *Example:*
713 ---------------------
714 {
715  "change": "focus",
716  "current": {
717   "id": 28489712,
718   "type": "workspace",
719   ...
720  }
721  "old": {
722   "id": 28489715,
723   "type": "workspace",
724   ...
725  }
726 }
727 ---------------------
728
729 === output event
730
731 This event consists of a single serialized map containing a property
732 +change (string)+ which indicates the type of the change (currently only
733 "unspecified").
734
735 *Example:*
736 ---------------------------
737 { "change": "unspecified" }
738 ---------------------------
739
740 === mode event
741
742 This event consists of a single serialized map containing a property
743 +change (string)+ which holds the name of current mode in use. The name
744 is the same as specified in config when creating a mode. The default
745 mode is simply named default. It contains a second property, +pango_markup+, which
746 defines whether pango markup shall be used for displaying this mode.
747
748 *Example:*
749 ---------------------------
750 {
751   "change": "default",
752   "pango_markup": true
753 }
754 ---------------------------
755
756 === window event
757
758 This event consists of a single serialized map containing a property
759 +change (string)+ which indicates the type of the change
760
761 * +new+ – the window has become managed by i3
762 * +close+ – the window has closed
763 * +focus+ – the window has received input focus
764 * +title+ – the window's title has changed
765 * +fullscreen_mode+ – the window has entered or exited fullscreen mode
766 * +move+ – the window has changed its position in the tree
767 * +floating+ – the window has transitioned to or from floating
768 * +urgent+ – the window has become urgent or lost its urgent status
769 * +mark+ – a mark has been added to or removed from the window
770
771 Additionally a +container (object)+ field will be present, which consists
772 of the window's parent container. Be aware that for the "new" event, the
773 container will hold the initial name of the newly reparented window (e.g.
774 if you run urxvt with a shell that changes the title, you will still at
775 this point get the window title as "urxvt").
776
777 *Example:*
778 ---------------------------
779 {
780  "change": "new",
781  "container": {
782   "id": 35569536,
783   "type": "con",
784   ...
785  }
786 }
787 ---------------------------
788
789 === barconfig_update event
790
791 This event consists of a single serialized map reporting on options from the
792 barconfig of the specified bar_id that were updated in i3. This event is the
793 same as a +GET_BAR_CONFIG+ reply for the bar with the given id.
794
795 === binding event
796
797 This event consists of a single serialized map reporting on the details of a
798 binding that ran a command because of user input. The +change (string)+ field
799 indicates what sort of binding event was triggered (right now it will always be
800 +"run"+ but may be expanded in the future).
801
802 The +binding (object)+ field contains details about the binding that was run:
803
804 command (string)::
805         The i3 command that is configured to run for this binding.
806 event_state_mask (array of strings)::
807         The group and modifier keys that were configured with this binding.
808 input_code (integer)::
809         If the binding was configured with +bindcode+, this will be the key code
810         that was given for the binding. If the binding is a mouse binding, it will be
811         the number of the mouse button that was pressed. Otherwise it will be 0.
812 symbol (string or null)::
813         If this is a keyboard binding that was configured with +bindsym+, this
814         field will contain the given symbol. Otherwise it will be +null+.
815 input_type (string)::
816         This will be +"keyboard"+ or +"mouse"+ depending on whether or not this was
817         a keyboard or a mouse binding.
818
819 *Example:*
820 ---------------------------
821 {
822  "change": "run",
823  "binding": {
824   "command": "nop",
825   "event_state_mask": [
826     "shift",
827     "ctrl"
828   ],
829   "input_code": 0,
830   "symbol": "t",
831   "input_type": "keyboard"
832  }
833 }
834 ---------------------------
835
836 === shutdown event
837
838 This event is triggered when the connection to the ipc is about to shutdown
839 because of a user action such as a +restart+ or +exit+ command. The +change
840 (string)+ field indicates why the ipc is shutting down. It can be either
841 +"restart"+ or +"exit"+.
842
843 *Example:*
844 ---------------------------
845 {
846  "change": "restart"
847 }
848 ---------------------------
849
850 == See also (existing libraries)
851
852 [[libraries]]
853
854 For some languages, libraries are available (so you don’t have to implement
855 all this on your own). This list names some (if you wrote one, please let me
856 know):
857
858 C::
859         * i3 includes a headerfile +i3/ipc.h+ which provides you all constants.
860         * https://github.com/acrisci/i3ipc-glib
861 C++::
862         * https://github.com/drmgc/i3ipcpp
863 Go::
864         * https://github.com/mdirkse/i3ipc-go
865 JavaScript::
866         * https://github.com/acrisci/i3ipc-gjs
867 Lua::
868         * https://github.com/acrisci/i3ipc-lua
869 Perl::
870         * https://metacpan.org/module/AnyEvent::I3
871 Python::
872         * https://github.com/acrisci/i3ipc-python
873         * https://github.com/whitelynx/i3ipc (not maintained)
874         * https://github.com/ziberna/i3-py (not maintained)
875 Ruby::
876         * https://github.com/veelenga/i3ipc-ruby
877         * https://github.com/badboy/i3-ipc (not maintained)
878 Rust::
879         * https://github.com/tmerr/i3ipc-rs
880 OCaml::
881         * https://github.com/Armael/ocaml-i3ipc