move rss widget to match new layout

This commit is contained in:
Jörg Thalheim 2017-01-25 20:12:43 +01:00
parent 6db55c8bd0
commit 46c5457e8e
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 3 additions and 4 deletions

View File

@ -138,8 +138,7 @@ manipulate them
* @sink optional, same usage as in vicious.contrib.pulse * @sink optional, same usage as in vicious.contrib.pulse
* returns the exit status of pacmd * returns the exit status of pacmd
vicious.contrib.rss **vicious.contrib.rss**
-
vicious.contrib.sensors vicious.contrib.sensors
- -

View File

@ -15,7 +15,7 @@ local setmetatable = setmetatable
-- RSS: provides latest world news -- RSS: provides latest world news
-- vicious.contrib.rss -- vicious.contrib.rss
local rss = {} local rss_all = {}
-- {{{ RSS widget type -- {{{ RSS widget type
@ -65,4 +65,4 @@ local function worker(format, input)
end end
-- }}} -- }}}
return setmetatable(rss, { __call = function(_, ...) return worker(...) end }) return setmetatable(rss_all, { __call = function(_, ...) return worker(...) end })