From c870b139b0cd07800f16f3bcb525735214fd9727 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Sun, 13 Nov 2011 16:49:25 -0800 Subject: [PATCH] webbrowser.linux: switching to xdg-open. --- extra/webbrowser/linux/linux.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/webbrowser/linux/linux.factor b/extra/webbrowser/linux/linux.factor index 5eea147b8a..70a0ee9762 100644 --- a/extra/webbrowser/linux/linux.factor +++ b/extra/webbrowser/linux/linux.factor @@ -6,4 +6,4 @@ USING: io.launcher kernel sequences system webbrowser ; IN: webbrowser.linux M: linux open-file ( path -- ) - { "gnome-open" } swap suffix try-process ; + { "xdg-open" } swap suffix try-process ;