mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-31 17:31:23 -05:00
Bumps [github.com/gookit/config/v2](https://github.com/gookit/config) from 2.1.8 to 2.2.2. - [Release notes](https://github.com/gookit/config/releases) - [Commits](https://github.com/gookit/config/compare/v2.1.8...v2.2.2) --- updated-dependencies: - dependency-name: github.com/gookit/config/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
58 lines
1.1 KiB
Go
58 lines
1.1 KiB
Go
//go:build windows
|
||
// +build windows
|
||
|
||
package sysutil
|
||
|
||
import (
|
||
"errors"
|
||
"syscall"
|
||
|
||
"golang.org/x/sys/windows"
|
||
)
|
||
|
||
// IsWin system. linux windows darwin
|
||
func IsWin() bool { return true }
|
||
|
||
// IsWindows system. linux windows darwin
|
||
func IsWindows() bool { return true }
|
||
|
||
// IsMac system
|
||
func IsMac() bool { return false }
|
||
|
||
// IsDarwin system
|
||
func IsDarwin() bool { return false }
|
||
|
||
// IsLinux system
|
||
func IsLinux() bool { return false }
|
||
|
||
// Kill a process by pid
|
||
func Kill(pid int, signal syscall.Signal) error {
|
||
return errors.New("not support")
|
||
}
|
||
|
||
// ProcessExists check process exists by pid
|
||
func ProcessExists(pid int) bool {
|
||
panic("TIP: please use sysutil/process.Exists()")
|
||
}
|
||
|
||
// OpenURL Open file or browser URL
|
||
//
|
||
// - refers https://github.com/pkg/browser
|
||
//
|
||
// Mac:
|
||
//
|
||
// open 'https://github.com/inhere'
|
||
//
|
||
// Linux:
|
||
//
|
||
// xdg-open URL
|
||
// x-www-browser 'https://github.com/inhere'
|
||
//
|
||
// Windows:
|
||
//
|
||
// cmd /c start https://github.com/inhere
|
||
func OpenURL(url string) error {
|
||
// return exec.Command("cmd", "/C", "start", URL).Run()
|
||
return windows.ShellExecute(0, nil, windows.StringToUTF16Ptr(url), nil, nil, windows.SW_SHOWNORMAL)
|
||
}
|