]> git.sur5r.net Git - i3/i3/commitdiff
use new default ipc-socket path, glob() path, bump version
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 27 Mar 2010 13:54:30 +0000 (14:54 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 19 Aug 2017 16:13:19 +0000 (18:13 +0200)
lib/AnyEvent/I3.pm

index a2951767683277e847257a86da7cfae30488706a..d9a55b2b0ecc5a4f9054c4ea3e11f86e5e5aa82a 100644 (file)
@@ -15,11 +15,11 @@ AnyEvent::I3 - communicate with the i3 window manager
 
 =cut
 
-our $VERSION = '0.03';
+our $VERSION = '0.04';
 
 =head1 VERSION
 
-Version 0.03
+Version 0.04
 
 =head1 SYNOPSIS
 
@@ -29,7 +29,7 @@ then subscribe to events or send messages and receive their replies.
 
     use AnyEvent::I3 qw(:all);
 
-    my $i3 = i3("/tmp/i3-ipc.sock");
+    my $i3 = i3("~/.i3/ipc.sock");
 
     $i3->connect->recv or die "Error connecting";
     say "Connected to i3";
@@ -94,9 +94,9 @@ the UNIX socket to connect to.
 sub new {
     my ($class, $path) = @_;
 
-    $path ||= '/tmp/i3-ipc.sock';
+    $path ||= '~/.i3/ipc.sock';
 
-    bless { path => $path } => $class;
+    bless { path => glob($path) } => $class;
 }
 
 =head2 $i3->connect