]> git.sur5r.net Git - i3/i3/commitdiff
docs: update for new ipc socket path
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 27 Mar 2010 14:22:28 +0000 (15:22 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 27 Mar 2010 14:22:28 +0000 (15:22 +0100)
docs/ipc
docs/userguide

index 4e46bc9e44139cce41e94920a1dddf155f89de5f..f65ae484ecde640244d495931e5d86f2d66a2148 100644 (file)
--- a/docs/ipc
+++ b/docs/ipc
@@ -12,7 +12,7 @@ The method of choice for IPC in our case is a unix socket because it has very
 little overhead on both sides and is usually available without headaches in
 most languages. In the default configuration file, no ipc-socket path is
 specified and thus no socket is created. The standard path (which +i3-msg+ and
-+i3-input+ use) is +/tmp/i3-ipc.sock+.
++i3-input+ use) is +~/.i3/ipc.sock+.
 
 == Establishing a connection
 
@@ -21,7 +21,7 @@ snippet illustrates this in Perl:
 
 -------------------------------------------------------------
 use IO::Socket::UNIX;
-my $sock = IO::Socket::UNIX->new(Peer => '/tmp/i3-ipc.sock');
+my $sock = IO::Socket::UNIX->new(Peer => '~/.i3/ipc.sock');
 -------------------------------------------------------------
 
 == Sending messages to i3
index 5cb1fe58eebfae2c00f8612346fc8ddc658d6a45..c706c6315632c2dc3ea13d7421e93c629d3969c2 100644 (file)
@@ -504,11 +504,11 @@ programs to get information from i3, such as the current workspaces
 (to display a workspace bar), and to control i3.
 
 To enable it, you have to configure a path where the unix socket will be
-stored. The default path is +/tmp/i3-ipc.sock+.
+stored. The default path is +~/.i3/ipc.sock+.
 
 *Examples*:
 ----------------------------
-ipc-socket /tmp/i3-ipc.sock
+ipc-socket ~/.i3/ipc.sock
 ----------------------------
 
 You can then use the +i3-msg+ application to perform any command listed in