]> git.sur5r.net Git - i3/i3/blob - man/i3-msg.man
04c719007c9dbf5c46ea5ac3750b9a4e34ae6ada
[i3/i3] / man / i3-msg.man
1 i3-msg(1)
2 =========
3 Michael Stapelberg <michael@i3wm.org>
4 v4.2, August 2012
5
6 == NAME
7
8 i3-msg - send messages to i3 window manager
9
10 == SYNOPSIS
11
12 i3-msg  [-q] [-v] [-h] [-s socket] [-t type] [message]
13
14 == OPTIONS
15
16 *-q, --quiet*::
17 Only send ipc message and suppress the output of the response.
18
19 *-v, --version*::
20 Display version number and exit.
21
22 *-h, --help*::
23 Display a short help-message and exit.
24
25 *-s, --socket* 'sock_path'::
26 i3-msg will use the environment variable I3SOCK or the socket path
27 given here. If both fail, it will try to get the socket information
28 from the root window and then try /tmp/i3-ipc.sock before exiting
29 with an error.
30
31 *-t* 'type'::
32 Send ipc message, see below. This option defaults to "command".
33
34 *message*::
35 Send ipc message, see below.
36
37 == IPC MESSAGE TYPES
38
39 command::
40 The payload of the message is a command for i3 (like the commands you can bind
41 to keys in the configuration file) and will be executed directly after
42 receiving it.
43
44 get_workspaces::
45 Gets the current workspaces. The reply will be a JSON-encoded list of
46 workspaces.
47
48 get_outputs::
49 Gets the current outputs. The reply will be a JSON-encoded list of outputs (see
50 the reply section of docs/ipc, e.g. at
51 https://i3wm.org/docs/ipc.html#_receiving_replies_from_i3).
52
53 get_tree::
54 Gets the layout tree. i3 uses a tree as data structure which includes every
55 container. The reply will be the JSON-encoded tree.
56
57 get_marks::
58 Gets a list of marks (identifiers for containers to easily jump to them later).
59 The reply will be a JSON-encoded list of window marks.
60
61 get_bar_config::
62 Gets the configuration (as JSON map) of the workspace bar with the given ID. If
63 no ID is provided, an array with all configured bar IDs is returned instead.
64
65 get_binding_modes::
66 Gets a list of configured binding modes.
67
68 get_version::
69 Gets the version of i3. The reply will be a JSON-encoded dictionary with the
70 major, minor, patch and human-readable version.
71
72 get_config::
73 Gets the currently loaded i3 configuration.
74
75 send_tick::
76 Sends a tick to all IPC connections which subscribe to tick events.
77
78 == DESCRIPTION
79
80 i3-msg is a sample implementation for a client using the unix socket IPC
81 interface to i3.
82
83 == EXAMPLES
84
85 ------------------------------------------------
86 # Use 1-px border for current client
87 i3-msg "border 1pixel"
88
89 # You can leave out the quotes
90 i3-msg border normal
91
92 # Dump the layout tree
93 i3-msg -t get_tree
94 ------------------------------------------------
95
96 == ENVIRONMENT
97
98 === I3SOCK
99
100 If no ipc-socket is specified on the commandline, this variable is used
101 to determine the path, at which the unix domain socket is expected, on which
102 to connect to i3.
103
104 == SEE ALSO
105
106 i3(1)
107
108 == AUTHOR
109
110 Michael Stapelberg and contributors