Merge pull request #294 from rski/master

mpris-widget: Misc fixes to get it in a working state
This commit is contained in:
streetturtle 2021-09-01 15:11:42 -04:00 committed by GitHub
commit 3b24474de4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -21,6 +21,6 @@ s.mytasklist, -- Middle widget
{ -- Right widgets { -- Right widgets
layout = wibox.layout.fixed.horizontal, layout = wibox.layout.fixed.horizontal,
... ...
mpris_widget, mpris_widget(),
... ...
``` ```

View File

@ -52,8 +52,8 @@ local mpris_widget = wibox.widget{
widget = wibox.widget.textbox widget = wibox.widget.textbox
}, },
layout = wibox.layout.fixed.horizontal, layout = wibox.layout.fixed.horizontal,
set_text = function(self, artis, title) set_text = function(self, artist, title)
self:get_children_by_id('artist')[1]:set_text(artis) self:get_children_by_id('artist')[1]:set_text(artist)
self:get_children_by_id('title')[1]:set_text(title) self:get_children_by_id('title')[1]:set_text(title)
end end
} }
@ -129,7 +129,7 @@ end
local function worker() local function worker()
-- retriving song info -- retrieve song info
local current_song, artist, mpdstatus, art, artUrl local current_song, artist, mpdstatus, art, artUrl
local icon = wibox.widget { local icon = wibox.widget {
@ -163,7 +163,7 @@ local function worker()
local update_graphic = function(widget, stdout, _, _, _) local update_graphic = function(widget, stdout, _, _, _)
-- mpdstatus, artist, current_song = stdout:match("(%w+)%;+(.-)%;(.*)") -- mpdstatus, artist, current_song = stdout:match("(%w+)%;+(.-)%;(.*)")
local words = {} local words = {}
for w in stdout:gmatch("([^;]*)") do table.insert(words, w) end for w in stdout:gmatch("([^;]*);") do table.insert(words, w) end
mpdstatus = words[1] mpdstatus = words[1]
artist = words[2] artist = words[2]
@ -188,7 +188,7 @@ local function worker()
icon.image = PAUSE_ICON_NAME icon.image = PAUSE_ICON_NAME
widget.colors = {beautiful.widget_main_color} widget.colors = {beautiful.widget_main_color}
mpdarc_current_song_widget.markup = current_song mpdarc_current_song_widget.markup = current_song
widget.set_text(artist, current_song) widget:set_text(artist, current_song)
elseif mpdstatus == "Stopped" then elseif mpdstatus == "Stopped" then
mpdarc_icon_widget.visible = true mpdarc_icon_widget.visible = true
icon.image = STOP_ICON_NAME icon.image = STOP_ICON_NAME