Files
appcore/open/open_linux.go

16 lines
255 B
Go
Raw Permalink Normal View History

2025-06-16 22:19:00 +05:30
package open
import (
"os/exec"
)
// http://sources.debian.net/src/xdg-utils
func open(input string) *exec.Cmd {
return exec.Command("xdg-open", input)
}
func openWith(input string, appName string) *exec.Cmd {
return exec.Command(appName, input)
}