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

12
model_overview_state.go Normal file
View File

@ -0,0 +1,12 @@
package niri
import "encoding/json"
type overviewState struct {
IsOpen bool `json:"is_open"`
}
func (m overviewState) String() string {
data, _ := json.MarshalIndent(m, "", "\t")
return string(data)
}