From 71c3ff66423c1ea819da7722797002c28edcd4cf Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 22 Aug 2025 11:20:18 -0500 Subject: [PATCH] more --- showAll.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/showAll.go b/showAll.go index 12ff602..3524db2 100644 --- a/showAll.go +++ b/showAll.go @@ -31,8 +31,10 @@ func main() { y := fields[3] width := fields[4] height := fields[5] + title := strings.Join(fields[7:], " ") fmt.Printf("Terminal Window Found:\n") + fmt.Printf(" Title: %s\n", title) fmt.Printf(" Geometry: X=%s, Y=%s, Width=%s, Height=%s\n", x, y, width, height) fmt.Printf(" Workspace: %s\n", workspace) fmt.Println("---")