vicious/mpd.lua

43 lines
1.1 KiB
Lua
Raw Normal View History

2009-09-29 22:33:19 +02:00
---------------------------------------------------
-- Licensed under the GNU General Public License v2
-- * (c) 2009, Adrian C. <anrxc.sysphere.org>
-- * (c) Wicked, Lucas de Vries
---------------------------------------------------
-- {{{ Grab environment
local io = { popen = io.popen }
local setmetatable = setmetatable
local helpers = require("vicious.helpers")
2009-10-05 00:10:47 +02:00
local string = { find = string.find }
-- }}}
-- Mpd: provides the currently playing song in MPD
module("vicious.mpd")
-- {{{ MPD widget type
2009-08-07 17:41:10 +02:00
local function worker(format)
-- Get data from mpc
local f = io.popen("mpc")
local np = f:read("*line")
f:close()
-- Check if it's stopped, off or not installed
2009-10-05 00:10:47 +02:00
if np == nil
or (string.find(np, "MPD_HOST") or string.find(np, "volume:")) then
return {"Stopped"}
end
-- Sanitize the song name
local nowplaying = helpers.escape(np)
-- Don't abuse the wibox, truncate
2009-10-05 00:10:47 +02:00
nowplaying = helpers.truncate(nowplaying, 30)
return {nowplaying}
end
-- }}}
setmetatable(_M, { __call = function(_, ...) return worker(...) end })