move org widget to match new layout

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

View File

@ -17,7 +17,7 @@ local os = {
-- Org: provides agenda statistics for Emacs org-mode -- Org: provides agenda statistics for Emacs org-mode
-- vicious.widgets.org -- vicious.widgets.org
local org = {} local org_all = {}
-- {{{ OrgMode widget type -- {{{ OrgMode widget type
@ -59,4 +59,4 @@ local function worker(format, warg)
end end
-- }}} -- }}}
return setmetatable(org, { __call = function(_, ...) return worker(...) end }) return setmetatable(org_all, { __call = function(_, ...) return worker(...) end })