move os widget to match new layout

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

View File

@ -20,7 +20,7 @@ local string = {
-- OS: provides operating system information -- OS: provides operating system information
-- vicious.widgets.os -- vicious.widgets.os
local os = {} local os_all = {}
-- {{{ Operating system widget type -- {{{ Operating system widget type
@ -70,4 +70,4 @@ local function worker(format)
end end
-- }}} -- }}}
return setmetatable(os, { __call = function(_, ...) return worker(...) end }) return setmetatable(os_all, { __call = function(_, ...) return worker(...) end })