mirror of https://github.com/lcpz/lain.git
(re)merged #142
This commit is contained in:
parent
da1410677b
commit
11e448e5e2
|
@ -59,6 +59,7 @@ local function worker(args)
|
||||||
mpd_now = {
|
mpd_now = {
|
||||||
state = "N/A",
|
state = "N/A",
|
||||||
file = "N/A",
|
file = "N/A",
|
||||||
|
name = "N/A",
|
||||||
artist = "N/A",
|
artist = "N/A",
|
||||||
title = "N/A",
|
title = "N/A",
|
||||||
album = "N/A",
|
album = "N/A",
|
||||||
|
@ -71,6 +72,7 @@ local function worker(args)
|
||||||
for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
|
for k, v in string.gmatch(line, "([%w]+):[%s](.*)$") do
|
||||||
if k == "state" then mpd_now.state = v
|
if k == "state" then mpd_now.state = v
|
||||||
elseif k == "file" then mpd_now.file = v
|
elseif k == "file" then mpd_now.file = v
|
||||||
|
elseif k == "Name" then mpd_now.name = escape_f(v)
|
||||||
elseif k == "Artist" then mpd_now.artist = escape_f(v)
|
elseif k == "Artist" then mpd_now.artist = escape_f(v)
|
||||||
elseif k == "Title" then mpd_now.title = escape_f(v)
|
elseif k == "Title" then mpd_now.title = escape_f(v)
|
||||||
elseif k == "Album" then mpd_now.album = escape_f(v)
|
elseif k == "Album" then mpd_now.album = escape_f(v)
|
||||||
|
|
Loading…
Reference in New Issue