From: Diego Ongaro Date: Wed, 1 May 2013 05:23:03 +0000 (-0700) Subject: contrib/gtk-tree-watch.pl: Remove bogus default socket path X-Git-Tag: 4.6~40 X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3;a=commitdiff_plain;h=dc522b630cac66ff16cfdd6dab466a8c60c858dd contrib/gtk-tree-watch.pl: Remove bogus default socket path The default i3 socket path was set to "/tmp/nestedcons". This isn't going to work for most people. --- diff --git a/contrib/gtk-tree-watch.pl b/contrib/gtk-tree-watch.pl index f15d0c18..30cc64fc 100755 --- a/contrib/gtk-tree-watch.pl +++ b/contrib/gtk-tree-watch.pl @@ -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);