Files
wisp-open/internal/platform/platform_linux.go
T
2026-05-09 10:59:26 -07:00

37 lines
611 B
Go

//go:build linux
package platform
import "wis-free-v3/internal/linux"
func NewOverlay() Overlay {
return linux.NewOverlay()
}
func PauseMedia() bool {
return linux.PauseMedia()
}
func ResumeMedia(wasPaused bool) {
linux.ResumeMedia(wasPaused)
}
func AddToStartup() error {
return linux.AddToStartup()
}
func RemoveFromStartup() error {
return linux.RemoveFromStartup()
}
func IsInStartup() bool {
return linux.IsInStartup()
}
func IsProcessRunning(pid int) bool {
return linux.IsProcessRunning(pid)
}
func EnsureDesktopFile(iconBytes []byte) error {
return linux.EnsureDesktopFile(iconBytes)
}