2024-11-15 16:12:15 +00:00
|
|
|
//go:build linux
|
|
|
|
|
2024-11-18 15:23:13 +00:00
|
|
|
// Copyright 2024 Patial Tech. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2024-11-15 16:12:15 +00:00
|
|
|
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)
|
|
|
|
}
|