contrib/gtk-tree-watch.pl: Remove bogus default socket path
Patch status: merged
Patch by Diego Ongaro
Long description:
The default i3 socket path was set to "/tmp/nestedcons". This isn't going to work for most people.
To apply this patch, use:
curl http://cr.i3wm.org/patch/157/raw.patch | git am
b/contrib/gtk-tree-watch.pl
| 15 |
@@ -19,7 +19,7 @@ $window->signal_connect('delete_event' => sub { Gtk2->main_quit; });
|
| 16 |
|
| 17 |
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/); |
| 18 |
|
| 19 |
-my $i3 = i3("/tmp/nestedcons");
|
| 20 |
+my $i3 = i3(); |
| 21 |
|
| 22 |
my $tree_view = Gtk2::TreeView->new($tree_store); |
| 23 |
|