initial commit

This commit is contained in:
2025-07-25 13:41:23 +02:00
commit 840de62902
27 changed files with 1772 additions and 0 deletions

View File

@ -0,0 +1,17 @@
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"`
}