mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 00:45:19 +00:00
c82c580716
* Orbit: Add Fleet Desktop support to Windows * Rename workflow, fix linux build * Do not compile systray on linux * nolint on unused * Fix lint properly * nolint both checkers * Fix monitor logic in desktopRunner * Fix interrupt and execute order
9 lines
161 B
Go
9 lines
161 B
Go
package open
|
|
|
|
import "os/exec"
|
|
|
|
func browser(url string) error {
|
|
// xdg-open is available on most Linux-y systems
|
|
return exec.Command("xdg-open", url).Run()
|
|
}
|