//go:build !windows package main // virtualScreenBounds is Windows-only; elsewhere we cannot tell, and the caller // treats "cannot tell" as "trust the saved position". func virtualScreenBounds() (x, y, w, h int, ok bool) { return 0, 0, 0, 0, false }