adding links to xdg-open source code in case we want to use it someday

This commit is contained in:
skratchdot 2015-02-21 09:03:35 -05:00
parent e43cb5678b
commit c8748311a7
1 changed files with 3 additions and 0 deletions

View File

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