Files
streamctl/pkg/screen/get_bounds.go
Dmitrii Okunev f676a7416f Random fixes
2025-03-23 22:52:20 +00:00

12 lines
166 B
Go

package screen
import (
"image"
"github.com/kbinani/screenshot"
)
func GetBounds(screenID int) image.Rectangle {
return screenshot.GetDisplayBounds(screenID)
}