18 lines
343 B
Go
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"`
|
|
}
|