]> git.sur5r.net Git - i3/i3/commitdiff
contrib/gtk-tree-watch.pl: Remove bogus default socket path
authorDiego Ongaro <ongardie@gmail.com>
Wed, 1 May 2013 05:23:03 +0000 (22:23 -0700)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 5 May 2013 10:58:04 +0000 (12:58 +0200)
The default i3 socket path was set to "/tmp/nestedcons". This isn't
going to work for most people.

contrib/gtk-tree-watch.pl

index f15d0c1814eca7e73a13133b08f29538ca42c44f..30cc64fcf35abda5a3704edaec27ee115c5ca1d1 100755 (executable)
@@ -19,7 +19,7 @@ $window->signal_connect('delete_event' => sub { Gtk2->main_quit; });
 
 my $tree_store = Gtk2::TreeStore->new(qw/Glib::String/, qw/Glib::String/, qw/Glib::String/, qw/Glib::String/, qw/Glib::String/, qw/Glib::String/, qw/Glib::String/, qw/Glib::String/);
 
-my $i3 = i3("/tmp/nestedcons");
+my $i3 = i3();
 
 my $tree_view = Gtk2::TreeView->new($tree_store);