2011-11-12 19:18:52 -05:00
|
|
|
! Copyright (C) 2011 John Benediktsson
|
|
|
|
! See http://factorcode.org/license.txt for BSD license
|
|
|
|
|
2013-11-17 15:57:11 -05:00
|
|
|
USING: arrays io.launcher kernel present system webbrowser ;
|
2011-11-12 19:18:52 -05:00
|
|
|
|
2011-11-13 19:31:52 -05:00
|
|
|
IN: webbrowser.linux
|
2011-11-12 19:18:52 -05:00
|
|
|
|
2011-11-13 19:31:52 -05:00
|
|
|
M: linux open-file ( path -- )
|
2013-11-17 15:57:11 -05:00
|
|
|
present "xdg-open" swap 2array try-process ;
|