mirror of
https://codeberg.org/scip/swayipc.git
synced 2025-12-16 20:20:56 +01:00
31 lines
460 B
Go
31 lines
460 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
|
|
"github.com/tlinden/swayipc"
|
|
)
|
|
|
|
func main() {
|
|
ipc := swayipc.NewSwayIPC()
|
|
|
|
err := ipc.Connect()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer ipc.Close()
|
|
|
|
tree, err := ipc.GetTree()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
focused := tree.FindFocused()
|
|
|
|
if focused != nil {
|
|
fmt.Printf("focused node: %s\n id: %d\n Geometry: %dx%d\n",
|
|
focused.Name, focused.Id, focused.Geometry.Width, focused.Geometry.Height)
|
|
}
|
|
}
|