From c8748311a7528d0ba7330d302adbc5a677ef9c9e Mon Sep 17 00:00:00 2001 From: skratchdot Date: Sat, 21 Feb 2015 09:03:35 -0500 Subject: [PATCH] adding links to xdg-open source code in case we want to use it someday --- open/exec.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/open/exec.go b/open/exec.go index cc37339..1b0e713 100644 --- a/open/exec.go +++ b/open/exec.go @@ -6,6 +6,9 @@ import ( "os/exec" ) +// http://sources.debian.net/src/xdg-utils/1.1.0~rc1%2Bgit20111210-7.1/scripts/xdg-open/ +// http://sources.debian.net/src/xdg-utils/1.1.0~rc1%2Bgit20111210-7.1/scripts/xdg-mime/ + func open(input string) *exec.Cmd { return exec.Command("xdg-open", input) }