1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-06-28 05:25:11 +00:00

Linux support, updated documentation

This commit is contained in:
2023-06-02 17:23:39 +02:00
parent 1ed8ca371b
commit b18917ebb4
7 changed files with 63 additions and 44 deletions

View File

@ -0,0 +1,9 @@
//go:build linux
package ui
import "os/exec"
func reveal(fname string) {
exec.Command("xdg-open", fname).Run()
}