feat: add portable Windows zone manager

This commit is contained in:
Steve Cliff
2026-08-20 08:57:41 +01:00
parent 318300ef79
commit 6ddecad74d
15 changed files with 1760 additions and 4 deletions
+12
View File
@@ -0,0 +1,12 @@
//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")
}