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