mpd: added http streams check; #115

This commit is contained in:
Luke Bonham 2015-07-12 11:51:58 +02:00
parent e815650ecc
commit f6cc2aedd6
2 changed files with 10 additions and 4 deletions

View File

@ -89,12 +89,18 @@ local function worker(args)
then
helpers.set_map("current mpd track", mpd_now.title)
os.execute(string.format("%s %q %q %d %q", mpdcover, music_dir,
mpd_now.file, cover_size, default_art))
if string.match(mpd_now.file, "http://") == nil
then -- local file
os.execute(string.format("%s %q %q %d %q", mpdcover, music_dir,
mpd_now.file, cover_size, default_art))
current_icon = "/tmp/mpdcover.png"
else -- http stream
current_icon = default_art
end
mpd.id = naughty.notify({
preset = mpd_notification_preset,
icon = "/tmp/mpdcover.png",
icon = current_icon,
replaces_id = mpd.id,
}).id
end

2
wiki

@ -1 +1 @@
Subproject commit 54b3a717b2f7069264ce5a20018ae4abf153e7b2
Subproject commit 4021f24b33be60d2e6b4050098bd8da131648a7e