From 64e5426985f7d0584c7855159c19eca7e431a67a Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Wed, 7 Apr 2010 02:24:01 +0200 Subject: uptime: simplified system load regexp --- widgets/uptime.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'widgets/uptime.lua') diff --git a/widgets/uptime.lua b/widgets/uptime.lua index e0bdc3b..ece3739 100644 --- a/widgets/uptime.lua +++ b/widgets/uptime.lua @@ -27,8 +27,7 @@ local function worker(format) local up_m = math.floor(((up_t % (3600 * 24)) % 3600) / 60) local l1, l5, l15 = -- Get load averages for past 1, 5 and 15 minutes - string.match(proc.loadavg, "([%d]*%.[%d]*)%s([%d]*%.[%d]*)%s([%d]*%.[%d]*)") - + string.match(proc.loadavg, "([%d%.]+)[%s]([%d%.]+)[%s]([%d%.]+)") return {up_d, up_h, up_m, l1, l5, l15} end -- }}} -- cgit v1.2.3