]> git.rmz.io Git - dotfiles.git/blobdiff - awesome/widgets/mpd_widget.lua
awesome/mpd_widget: Update popup contents
[dotfiles.git] / awesome / widgets / mpd_widget.lua
index f8510efcbec8e4102899bbce00e326378a3ef0aa..7f96b2408c22dfb6d9321f05a13ac16530fe4533 100644 (file)
@@ -13,6 +13,7 @@ widget._currentsong = {}
 widget.scroll = wibox.widget {
     layout = wibox.container.scroll.horizontal,
     max_size = 200,
+    extra_space = 10,
     step_function = wibox.container.scroll.step_functions.linear_increase,
     speed = 20,
     {
@@ -53,8 +54,14 @@ function widget:get_info(callback)
 
         local info = {}
         info.title = status.state .. " " .. status.song .. "/" .. status.playlistlength .. " " .. song_duration(status.elapsed, status.duration)
-        info.text = tostring(song.artist or "") .. " - " .. tostring(song.title or "") .. "\n"
-            .. tostring(song.album or "")
+        if not song.artist then
+            info.text = string.format("%s", song.title or song.file)
+        else
+            info.text = string.format("%s - %s", song.artist, song.title)
+        end
+        if song.album then
+            info.text = info.text .. "\n" .. tostring(song.album or "")
+        end
         callback(info)
     end)
 end