1 IPC interface (interprocess communication)
2 ==========================================
3 Michael Stapelberg <michael@i3wm.org>
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
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+.
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.
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
29 == Establishing a connection
31 To establish a connection, simply open the IPC socket. The following code
32 snippet illustrates this in Perl:
34 -------------------------------------------------------------
36 chomp(my $path = qx(i3 --get-socketpath));
37 my $sock = IO::Socket::UNIX->new(Peer => $path);
38 -------------------------------------------------------------
40 == Sending messages to i3
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).
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
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 |======================================================
71 So, a typical message could look like this:
72 --------------------------------------------------
73 "i3-ipc" <message length> <message type> <payload>
74 --------------------------------------------------
77 ------------------------------------------------------------------------------
78 00000000 69 33 2d 69 70 63 04 00 00 00 00 00 00 00 65 78 |i3-ipc........ex|
80 ------------------------------------------------------------------------------
82 To generate and send such a message, you could use the following code in Perl:
83 ------------------------------------------------------------
84 sub format_ipc_command {
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;
92 $sock->write(format_ipc_command("exit"));
93 ------------------------------------------------------------------------------
95 == Receiving replies from i3
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).
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
109 The following reply types are implemented:
112 Confirmation/Error code for the RUN_COMMAND message.
114 Reply to the GET_WORKSPACES message.
116 Confirmation/Error code for the SUBSCRIBE message.
118 Reply to the GET_OUTPUTS message.
120 Reply to the GET_TREE message.
122 Reply to the GET_MARKS message.
124 Reply to the GET_BAR_CONFIG message.
126 Reply to the GET_VERSION message.
128 Reply to the GET_BINDING_MODES message.
130 Reply to the GET_CONFIG message.
132 Reply to the SEND_TICK message.
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)+.
143 [{ "success": true }]
146 [[_workspaces_reply]]
149 The reply consists of a serialized list of workspaces. Each workspace has the
150 following properties:
153 The logical number of the workspace. Corresponds to the command
154 to switch to this workspace. For named workspaces, this will be -1.
156 The name of this workspace (by default num+1), as changed by the
157 user. Encoded in UTF-8.
159 Whether this workspace is currently visible on an output (multiple
160 workspaces can be visible at the same time).
162 Whether this workspace currently has the focus (only one workspace
163 can have the focus at the same time).
165 Whether a window on this workspace has the "urgent" flag set.
167 The rectangle of this workspace (equals the rect of the output it
168 is on), consists of x, y, width, height.
170 The video output this workspace is on (LVDS1, VGA1, …).
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.
221 The reply consists of a serialized list of outputs. Each output has the
222 following properties:
225 The name of this output (as seen in +xrandr(1)+). Encoded in UTF-8.
227 Whether this output is currently active (has a valid mode).
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.
234 The rectangle of this output (equals the rect of the output it
235 is on), consists of x, y, width, height.
243 "current_workspace": "4",
254 "current_workspace": "1",
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!
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.
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).
285 Type of this container. Can be one of "root", "output", "con",
286 "floating_con", "workspace" or "dockarea".
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.
293 Can be either "splith", "splitv", "stacked", "tabbed", "dockarea" or
295 Other values might be possible in the future, should we add new
297 orientation (string)::
298 Can be either "none" (for non-split containers), "horizontal" or
300 THIS FIELD IS OBSOLETE. It is still present, but your code should not
301 use it. Instead, rely on the layout field.
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.
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":
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).
320 The coordinates of the *window decoration* inside its container. These
321 coordinates are relative to the container and do not include the actual
324 The original geometry the window specified when i3 mapped it. Used when
325 switching a window to floating mode, for example.
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.
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.
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
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
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
356 It is useful to have an overview of the structure before taking a look at the
370 -----------------------
397 "layout": "dockarea",
398 "orientation": "vertical",
421 "orientation": "horizontal",
428 "window_properties": {
430 "instance": "evince",
431 "title": "Properties",
432 "transient_for": 52428808
434 "floating_nodes": [],
458 "name": "bottomdock",
459 "layout": "dockarea",
460 "orientation": "vertical",
487 ------------------------
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.
496 If no window has a mark the response will be the empty array [].
498 [[_bar_config_reply]]
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.
505 Depending on the input, the reply is either:
508 An array of configured bar IDs
510 A JSON map containing the configuration for the specified bar.
512 Each bar configuration has the following properties:
515 The ID for this bar. Included in case you request multiple
516 configurations and want to differentiate the different replies.
518 Either +dock+ (the bar sets the dock window type) or +hide+ (the bar
519 does not show unless a specific key is pressed).
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.
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.
533 Should the bar enable verbose output for debugging? Defaults to false.
535 Contains key/value pairs of colors. Each value is a color code in hex,
536 formatted #rrggbb (like in HTML).
538 The following colors can be configured at the moment:
541 Background color of the bar.
543 Text color to be used for the statusline.
545 Text color to be used for the separator.
547 Background color of the bar on the currently focused monitor output.
549 Text color to be used for the statusline on the currently focused
552 Text color to be used for the separator on the currently focused
554 focused_workspace_text/focused_workspace_bg/focused_workspace_border::
555 Text/background/border color for a workspace button when the workspace
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.
573 *Example of configured bars:*
578 *Example of bar configuration:*
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,
590 "background": "#c0c0c0",
591 "statusline": "#00ff00",
592 "focused_workspace_text": "#ffffff",
593 "focused_workspace_bg": "#000000"
601 The reply consists of a single JSON dictionary with the following keys:
604 The major version of i3, such as +4+.
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.
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.
623 "human_readable" : "4.2-169-gf80b877 (2012-08-05, branch \"next\")",
624 "loaded_config_file_name" : "/home/hwangcc23/.i3/config",
631 [[_binding_modes_reply]]
632 === BINDING_MODES reply
634 The reply consists of an array of all currently configured binding modes.
637 ---------------------
638 ["default", "resize"]
639 ---------------------
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.
649 { "config": "font pango:monospace 8\nbindsym Mod4+q exit\n" }
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).
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
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.
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.
696 === Subscribing to events
698 By sending a message of type SUBSCRIBE with a JSON-encoded array as payload
699 you can register to an event.
702 ---------------------------------
704 payload: [ "workspace", "output" ]
705 ---------------------------------
710 The numbers in parenthesis is the event type (keep in mind that you need to
711 strip the highest bit first).
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).
718 Sent when RandR issues a change notification (of either screens,
719 outputs, CRTCs or output properties).
721 Sent whenever i3 changes its binding mode.
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.
730 Sent when a configured command binding is triggered with the keyboard or
733 Sent when the ipc shuts down because of a restart or exit by user command
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":
740 --------------------------------------------------------------------
741 # the appropriate 4 bytes read from the socket are stored in $input
743 # unpack a 32-bit unsigned integer
744 my $message_type = unpack("L", $input);
746 # check if the highest bit is 1
747 my $is_event = (($message_type >> 31) == 1);
750 my $event_type = ($message_type & 0x7F);
753 say "Received event of type $event_type";
755 --------------------------------------------------------------------
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).
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"
773 ---------------------
787 ---------------------
791 This event consists of a single serialized map containing a property
792 +change (string)+ which indicates the type of the change (currently only
796 ---------------------------
797 { "change": "unspecified" }
798 ---------------------------
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.
809 ---------------------------
814 ---------------------------
818 This event consists of a single serialized map containing a property
819 +change (string)+ which indicates the type of the change
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
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").
838 ---------------------------
847 ---------------------------
849 === barconfig_update event
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.
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).
862 The +binding (object)+ field contains details about the binding that was run:
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.
880 ---------------------------
885 "event_state_mask": [
891 "input_type": "keyboard"
894 ---------------------------
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"+.
904 ---------------------------
908 ---------------------------
912 This event is triggered by a subscription to tick events or by a +SEND_TICK+
915 *Example (upon subscription):*
916 --------------------------------------------------------------------------------
921 --------------------------------------------------------------------------------
923 *Example (upon +SEND_TICK+ with a payload of +arbitrary string+):*
924 --------------------------------------------------------------------------------
927 "payload": "arbitrary string"
929 --------------------------------------------------------------------------------
931 == See also (existing libraries)
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
940 * i3 includes a headerfile +i3/ipc.h+ which provides you all constants.
941 * https://github.com/acrisci/i3ipc-glib
943 * https://github.com/drmgc/i3ipcpp
945 * https://github.com/mdirkse/i3ipc-go
946 * https://github.com/i3/go-i3
948 * https://github.com/acrisci/i3ipc-gjs
950 * https://github.com/acrisci/i3ipc-lua
952 * https://metacpan.org/module/AnyEvent::I3
954 * https://github.com/acrisci/i3ipc-python
955 * https://github.com/whitelynx/i3ipc (not maintained)
956 * https://github.com/ziberna/i3-py (not maintained)
958 * https://github.com/veelenga/i3ipc-ruby
959 * https://github.com/badboy/i3-ipc (not maintained)
961 * https://github.com/tmerr/i3ipc-rs
963 * https://github.com/Armael/ocaml-i3ipc
965 == Appendix A: Detecting byte order in memory-safe languages
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.
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:
974 1. The byte order dependent fields of an IPC message are message type and
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.
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.
986 2. Send a big endian encoded message of type +SUBSCRIBE+ (2) with payload `[]`
987 followed by 65536 + 256 - 2 +SPACE+ (ASCII 0x20) bytes.
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.].
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.
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
1007 * The human-readable prefix is in there to not confuse readers of the i3 log.
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.
1012 4. Receive a message header from i3, decoding the message type as big endian.
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.
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.
1023 5. From here on out, send/receive all messages using the detected byte order.
1025 Find an example implementation of this technique in
1026 https://github.com/i3/go-i3/blob/master/byteorder.go