diff options
-rw-r--r-- | spotify-widget/spotify.lua | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/spotify-widget/spotify.lua b/spotify-widget/spotify.lua index f8df1ea..7c33752 100644 --- a/spotify-widget/spotify.lua +++ b/spotify-widget/spotify.lua @@ -51,8 +51,17 @@ local function worker(user_args) widget = wibox.widget.textbox, }, { - id = "icon", - widget = wibox.widget.imagebox, + layout = wibox.layout.stack, + { + id = "icon", + widget = wibox.widget.imagebox, + }, + { + widget = wibox.widget.textbox, + font = font, + text = ' ', + forced_height = 1 + } }, { layout = wibox.container.scroll.horizontal, |