We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a1cef6 commit a69682bCopy full SHA for a69682b
mpris-widget/init.lua
@@ -209,7 +209,7 @@ local function worker(user_args)
209
forced_height = 24,
210
forced_width = 24,
211
rounded_edge = true,
212
- bg = "#ffffff11",
+ colors = {"#ffffff11", "black"},
213
paddings = 2,
214
}
215
@@ -256,7 +256,7 @@ local function worker(user_args)
256
s = s .. "\n" .. meta.current_song .. " (" .. duration(meta.position) .. "/" .. duration(meta.length) .. ")"
257
metadata_widget:set_text(s)
258
259
- progress_widget.value = meta.progress
+ progress_widget.values = {1.0 - meta.progress, meta.progress}
260
261
-- poor man's urldecode
262
local art_url = meta.art_url:gsub("file://", "/")
0 commit comments