summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorSean E. Russell <ser@ser1.net>2020-04-23 13:01:13 -0500
committerSean E. Russell <ser@ser1.net>2020-04-23 13:01:13 -0500
commit6cee395f0636e17174881fa88e4a34f1f1e6a3dc (patch)
treee6b80632530cc635dd258346704bc81f67d0d0ce /cmd
parent5ada5315d940038fcd83777b1e73797bbbada108 (diff)
Add sensible defaults for temps. Improve config writing.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/gotop/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/gotop/main.go b/cmd/gotop/main.go
index 18525c6..4f611a1 100644
--- a/cmd/gotop/main.go
+++ b/cmd/gotop/main.go
@@ -578,7 +578,7 @@ func listDevices() {
sort.Strings(ms)
for _, m := range ms {
fmt.Printf("%s:\n", m)
- for _, d := range devices.Devices(m) {
+ for _, d := range devices.Devices(m, true) {
fmt.Printf("\t%s\n", d)
}
}