mirror of
https://github.com/makew0rld/amfora.git
synced 2024-11-03 02:37:23 -05:00
0df5effdcf
Co-authored-by: makeworld <25111343+makeworld-the-better-one@users.noreply.github.com> Co-authored-by: Stephen Robinson <stephen@drsudo.com>
36 lines
1.1 KiB
Go
36 lines
1.1 KiB
Go
// +build linux freebsd netbsd openbsd
|
|
|
|
//nolint:goerr113
|
|
package sysopen
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
)
|
|
|
|
// Open opens `path` in default system viewer. It tries to do so using
|
|
// xdg-open. It only works if there is a display server working.
|
|
func Open(path string) (string, error) {
|
|
var (
|
|
xorgDisplay = os.Getenv("DISPLAY")
|
|
waylandDisplay = os.Getenv("WAYLAND_DISPLAY")
|
|
xdgOpenPath, xdgOpenNotFoundErr = exec.LookPath("xdg-open")
|
|
)
|
|
switch {
|
|
case xorgDisplay == "" && waylandDisplay == "":
|
|
return "", fmt.Errorf("no display server was found. " +
|
|
"You may set a default [[mediatype-handlers]] command in the config")
|
|
case xdgOpenNotFoundErr == nil:
|
|
// Use start rather than run or output in order
|
|
// to make application run in background.
|
|
if err := exec.Command(xdgOpenPath, path).Start(); err != nil {
|
|
return "", err
|
|
}
|
|
return "Opened in default system viewer", nil
|
|
default:
|
|
return "", fmt.Errorf("could not determine default system viewer. " +
|
|
"Set a catch-all [[mediatype-handlers]] command in the config")
|
|
}
|
|
}
|