From 6e0427cc62d2e628a55bd9e969da237c1860c60c Mon Sep 17 00:00:00 2001 From: nekohepott Date: Mon, 29 Jun 2026 18:30:21 +0300 Subject: [PATCH] fix: change ram to cpu in GetCpu output --- src/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.go b/src/main.go index 03b0c9e..15194c6 100644 --- a/src/main.go +++ b/src/main.go @@ -78,7 +78,7 @@ func main() { statProviders := map[string]statProvider{ "host": {label: "host", fn: providers.GetHostname}, "dist": {label: "os", fn: func() string { return prettyName }}, - "cpu": {label: "ram", fn: func() string { v, _ := providers.GetCpu(); return v }}, + "cpu": {label: "cpu", fn: func() string { v, _ := providers.GetCpu(); return v }}, "krnl": {label: "kernel", fn: providers.GetKernel}, "ram": {label: "ram", fn: func() string { v, _ := providers.GetRam(); return v }}, "gpu": {label: "gpu", fn: providers.GetGpu},