Files
niri/model_output_action_configured_models.go
2025-07-25 13:41:23 +02:00

18 lines
343 B
Go

package niri
type ConfiguredMode struct {
Width int `json:"width"`
Height int `json:"height"`
Refresh Option[float64] `json:"refresh,omitempty"`
}
type ConfiguredPosition struct {
X int `json:"x"`
Y int `json:"y"`
}
type ConfiguredVrr struct {
Vrr bool `json:"vrr"`
OnDemand bool `json:"on_demand"`
}