vicious/mpd.lua

48 lines
1.2 KiB
Lua
Raw Normal View History

2009-09-29 22:33:19 +02:00
---------------------------------------------------
-- Licensed under the GNU General Public License v2
2009-11-04 23:39:38 +01:00
-- * (c) 2009, Adrian C. <anrxc@sysphere.org>
-- * (c) 2008, Lucas de Vries <lucas@glacicle.com>
2009-09-29 22:33:19 +02:00
---------------------------------------------------
-- {{{ Grab environment
local type = type
local io = { popen = io.popen }
local setmetatable = setmetatable
2009-10-05 00:10:47 +02:00
local string = { find = string.find }
local helpers = require("vicious.helpers")
-- }}}
-- Mpd: provides the currently playing song in MPD
module("vicious.mpd")
-- {{{ MPD widget type
local function worker(format, warg)
-- Get data from mpc
local f = io.popen("mpc")
local np = f:read("*line")
f:close()
2009-11-04 23:39:38 +01:00
-- Not installed,
if np == nil or -- off or stoppped.
(string.find(np, "MPD_HOST") or string.find(np, "volume:"))
then
return {"Stopped"}
end
-- Check if we should scroll, or maybe truncate
if warg then
if type(warg) == "table" then
np = helpers.scroll(np, warg[1], warg[2])
else
np = helpers.truncate(np, warg)
end
end
return {helpers.escape(np)}
end
-- }}}
setmetatable(_M, { __call = function(_, ...) return worker(...) end })