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.
next
Diego Ongaro 2013-04-30 22:23:03 -07:00 committed by Michael Stapelberg
parent 1b8e8822b9
commit dc522b630c
1 changed files with 1 additions and 1 deletions

View File

@ -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);