From 8cbadb61604667b407b53ee1258433994fa4765a Mon Sep 17 00:00:00 2001 From: coasteen Date: Thu, 9 Jul 2026 10:42:28 +0330 Subject: init --- slstatus/components/load_avg.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 slstatus/components/load_avg.c (limited to 'slstatus/components/load_avg.c') diff --git a/slstatus/components/load_avg.c b/slstatus/components/load_avg.c new file mode 100755 index 0000000..f278a40 --- /dev/null +++ b/slstatus/components/load_avg.c @@ -0,0 +1,19 @@ +/* See LICENSE file for copyright and license details. */ +#include +#include + +#include "../slstatus.h" +#include "../util.h" + +const char * +load_avg(const char *unused) +{ + double avgs[3]; + + if (getloadavg(avgs, 3) < 0) { + warn("getloadavg: Failed to obtain load average"); + return NULL; + } + + return bprintf("%.2f %.2f %.2f", avgs[0], avgs[1], avgs[2]); +} -- cgit v1.2.3