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