Files
2026-08-20 09:31:15 +01:00

17 lines
290 B
Go

//go:build !windows
package platform
import (
"errors"
"github.com/stevec/fancywin/internal/config"
)
func PrepareBackground() {}
func ShowError(_, _ string) {}
func Run(_ string, _ config.Config, _ bool) error {
return errors.New("the window manager can only run on Windows")
}