Few small improvements for spotify widget
This commit is contained in:
parent
ec26e2902c
commit
e1b7bab9c9
|
@ -4,7 +4,6 @@ local watch = require("awful.widget.watch")
|
||||||
|
|
||||||
spotify_widget = wibox.widget.textbox()
|
spotify_widget = wibox.widget.textbox()
|
||||||
spotify_widget:set_font('Play 9')
|
spotify_widget:set_font('Play 9')
|
||||||
spotify_widget:connect_signal("button::release", function() awful.spawn('sp play'); end)
|
|
||||||
|
|
||||||
-- optional icon, could be replaced by spotfiy logo (https://developer.spotify.com/design/)
|
-- optional icon, could be replaced by spotfiy logo (https://developer.spotify.com/design/)
|
||||||
spotify_icon = wibox.widget.imagebox()
|
spotify_icon = wibox.widget.imagebox()
|
||||||
|
@ -12,11 +11,16 @@ spotify_icon:set_image("/usr/share/icons/Arc/devices/22/audio-headphones.png")
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
"sp current-oneline", 1,
|
"sp current-oneline", 1,
|
||||||
function(widget, stdout, stderr, exitreason, exitcode)
|
function(widget, stdout, _, _, _)
|
||||||
spotify_widget:set_text(stdout)
|
if string.find(stdout, 'Error: Spotify is not running.') ~= nil then
|
||||||
end
|
widget:set_text("")
|
||||||
|
else
|
||||||
|
widget:set_text(stdout)
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
spotify_widget
|
||||||
)
|
)
|
||||||
|
|
||||||
spotify_widget:connect_signal("button::press", function(_,_,_,button)
|
spotify_widget:connect_signal("button::press", function(_,_,_,button)
|
||||||
if (button == 1) then awful.spawn("sp play", false) end
|
if (button == 1) then awful.spawn("sp play", false) end
|
||||||
end)
|
end)
|
Loading…
Reference in New Issue