I have the following in my .config/awesome/rc.lua:
--{{{ Display noify with current xmms2 playlist
function xmms2()
local f = io.popen("nyxmms2 status -f '${artist} - ${album} - ${title}'")
local fr = ""
for line in f:lines() do
fr = fr .. line .. '\n'
end
f:close()
naughty.notify({ title = "Currently playing:", text = fr, timeout = 5})
end
--}}}
I would like to add album art to this.
Does anyone have an idea of how to do this?
I am looking for something like this mpd setup but for xmms2.