mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2024-12-22 11:12:31 +00:00
holo: mpd & fix
This commit is contained in:
parent
d1c73522c6
commit
5108ca3bd5
13
rc.lua.holo
13
rc.lua.holo
|
@ -172,13 +172,12 @@ play_pause_icon:set_image(beautiful.play)
|
|||
mpdwidget = lain.widgets.mpd({
|
||||
settings = function ()
|
||||
if mpd_now.state == "play" then
|
||||
mpd_now.artist = mpd_now.artist:gsub('"', '"'):upper()
|
||||
mpd_now.title = mpd_now.title:gsub('"', '"'):upper()
|
||||
widget:set_markup(markup.font("Tamsyn 4", " ")
|
||||
.. markup.font("Tamsyn 8", mpd_now.artist ..
|
||||
" - " ..
|
||||
mpd_now.title)
|
||||
.. markup.font("Tamsyn 10", " "))
|
||||
.. markup.font("Tamsyn 8",
|
||||
mpd_now.artist:upper():gsub("&", "&")
|
||||
.. " - " ..
|
||||
mpd_now.title:upper():gsub("&", "&")
|
||||
.. markup.font("Tamsyn 10", " ")))
|
||||
play_pause_icon:set_image(beautiful.pause)
|
||||
elseif mpd_now.state == "pause" then
|
||||
widget:set_markup(markup.font("Tamsyn 4", " ") ..
|
||||
|
@ -186,7 +185,7 @@ mpdwidget = lain.widgets.mpd({
|
|||
markup.font("Tamsyn 10", " "))
|
||||
play_pause_icon:set_image(beautiful.play)
|
||||
else
|
||||
widget:set_text("")
|
||||
widget:set_markup("")
|
||||
play_pause_icon:set_image(beautiful.play)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue