mirror of
https://github.com/garraflavatra/rolens.git
synced 2024-11-28 10:22:24 +01:00
10 lines
117 B
Go
10 lines
117 B
Go
//go:build linux
|
|
|
|
package ui
|
|
|
|
import "os/exec"
|
|
|
|
func reveal(fname string) {
|
|
exec.Command("xdg-open", fname).Run()
|
|
}
|