From dc522b630cac66ff16cfdd6dab466a8c60c858dd Mon Sep 17 00:00:00 2001 From: Diego Ongaro Date: Tue, 30 Apr 2013 22:23:03 -0700 Subject: [PATCH] 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. --- contrib/gtk-tree-watch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/gtk-tree-watch.pl b/contrib/gtk-tree-watch.pl index f15d0c181..30cc64fcf 100755 --- a/contrib/gtk-tree-watch.pl +++ b/contrib/gtk-tree-watch.pl @@ -19,7 +19,7 @@ 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);