implemented everything else and added more examples and docs

This commit is contained in:
2025-08-15 12:16:08 +02:00
parent f5b0ee026f
commit 4f7e27528b
37 changed files with 954 additions and 3027 deletions

View File

@@ -0,0 +1,29 @@
package main
/*
Retrieve a list of current available inputs
*/
import (
"log"
"github.com/alecthomas/repr"
"github.com/tlinden/i3ipc"
)
func main() {
ipc := i3ipc.NewI3ipc()
err := ipc.Connect()
if err != nil {
log.Fatal(err)
}
defer ipc.Close()
inputs, err := ipc.GetInputs()
if err != nil {
log.Fatal(err)
}
repr.Println(inputs)
}