From 01086e3c223a96e047afceb706f2765d5a78329b Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Mon, 15 Feb 2021 19:33:02 -0600 Subject: [PATCH] Formatting changes for the show command --- cmd/show.go | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/cmd/show.go b/cmd/show.go index 982d2d2..ef932c4 100644 --- a/cmd/show.go +++ b/cmd/show.go @@ -13,15 +13,14 @@ func ShowCmd(args CmdArgs) (int, error) { sortLights(lights) - for _, l := range lights { + for i, l := range lights { fmt.Printf( - "Light Id: %s, Label: %s, %s, Power: %s\n", + "Light ID: %s, %s, Power: %s\n", l.Id, - l.Label, connected(l.Connected), powerColor(l.Power), ) - fmt.Printf(" Label: %s\n", l.Label) + fmt.Printf(" Label: %s, ID: %s\n", l.Label, l.Id) fmt.Printf(" UUID: %s\n", l.UUID) fmt.Printf(" Location: %s, ID: %s\n", l.Location.Name, l.Location.Id) fmt.Printf(" Group: %s, ID: %s\n", l.Group.Name, l.Group.Id) @@ -50,7 +49,10 @@ func ShowCmd(args CmdArgs) (int, error) { fmt.Printf(" location_id:%s\n", l.Location.Id) fmt.Printf(" location:%s\n", l.Location.Name) fmt.Printf(" Last Seen: %s (%.1fs ago)\n", l.LastSeen, l.SecondsLastSeen) - fmt.Println() + + if i < len(lights)-1 { + fmt.Println() + } } return ExitSuccess, nil }