17 lines
290 B
Go
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")
|
|
}
|