1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-18 13:07:58 +00:00
rolens/internal/ui/open_linux.go

10 lines
117 B
Go
Raw Normal View History

2023-06-02 15:23:39 +00:00
//go:build linux
package ui
import "os/exec"
func reveal(fname string) {
exec.Command("xdg-open", fname).Run()
}