summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-22 11:20:18 -0500
committerJeff Carr <[email protected]>2025-08-22 11:20:18 -0500
commit71c3ff66423c1ea819da7722797002c28edcd4cf (patch)
treec904aa3675e0ce3536aab17d3835346983d97e48
parent0d2cd8082b6e4c6610a97e6797d79bccd9436f6b (diff)
more
-rw-r--r--showAll.go2
1 files changed, 2 insertions, 0 deletions
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("---")