move cpuinf widget to match new layout

This commit is contained in:
mutlusun 2017-01-25 17:49:57 +01:00 committed by Jörg Thalheim
parent fbd91c9b37
commit 968fee1a54
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ local string = { gmatch = string.gmatch }
-- Cpuinf: provides speed and cache information for all available CPUs/cores
-- vicious.widgets.cpuinf
local cpuinf = {}
local cpuinf_linux = {}
-- {{{ CPU Information widget type
@ -41,4 +41,4 @@ local function worker(format)
end
-- }}}
return setmetatable(cpuinf, { __call = function(_, ...) return worker(...) end })
return setmetatable(cpuinf_linux, { __call = function(_, ...) return worker(...) end })