Compare commits
1 Commits
dfb41a7bac
...
01086e3c22
Author | SHA1 | Date | |
---|---|---|---|
01086e3c22 |
10
cmd/show.go
10
cmd/show.go
@ -13,15 +13,14 @@ func ShowCmd(args CmdArgs) (int, error) {
|
|||||||
|
|
||||||
sortLights(lights)
|
sortLights(lights)
|
||||||
|
|
||||||
for _, l := range lights {
|
for i, l := range lights {
|
||||||
fmt.Printf(
|
fmt.Printf(
|
||||||
"Light Id: %s, Label: %s, %s, Power: %s\n",
|
"Light ID: %s, %s, Power: %s\n",
|
||||||
l.Id,
|
l.Id,
|
||||||
l.Label,
|
|
||||||
connected(l.Connected),
|
connected(l.Connected),
|
||||||
powerColor(l.Power),
|
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(" UUID: %s\n", l.UUID)
|
||||||
fmt.Printf(" Location: %s, ID: %s\n", l.Location.Name, l.Location.Id)
|
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)
|
fmt.Printf(" Group: %s, ID: %s\n", l.Group.Name, l.Group.Id)
|
||||||
@ -50,8 +49,11 @@ func ShowCmd(args CmdArgs) (int, error) {
|
|||||||
fmt.Printf(" location_id:%s\n", l.Location.Id)
|
fmt.Printf(" location_id:%s\n", l.Location.Id)
|
||||||
fmt.Printf(" location:%s\n", l.Location.Name)
|
fmt.Printf(" location:%s\n", l.Location.Name)
|
||||||
fmt.Printf(" Last Seen: %s (%.1fs ago)\n", l.LastSeen, l.SecondsLastSeen)
|
fmt.Printf(" Last Seen: %s (%.1fs ago)\n", l.LastSeen, l.SecondsLastSeen)
|
||||||
|
|
||||||
|
if i < len(lights)-1 {
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return ExitSuccess, nil
|
return ExitSuccess, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user