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:
9
internal/ui/open_linux.go
Normal file
9
internal/ui/open_linux.go
Normal file
@ -0,0 +1,9 @@
|
||||
//go:build linux
|
||||
|
||||
package ui
|
||||
|
||||
import "os/exec"
|
||||
|
||||
func reveal(fname string) {
|
||||
exec.Command("xdg-open", fname).Run()
|
||||
}
|
Reference in New Issue
Block a user