awesome-wm-widgets/spotify-widget-v4/spotify.lua

18 lines
554 B
Lua
Raw Normal View History

2017-01-23 17:01:16 +01:00
local wibox = require("wibox")
local awful = require("awful")
2017-01-26 04:47:50 +01:00
local watch = require("awful.widget.watch")
2017-01-23 17:01:16 +01:00
spotify_widget = wibox.widget.textbox()
spotify_widget:set_font('Play 9')
2017-01-26 04:47:50 +01:00
-- optional icon, could be replaced by spotfiy logo (https://developer.spotify.com/design/)
spotify_icon = wibox.widget.imagebox()
spotify_icon:set_image("/usr/share/icons/Arc-Icons/places/symbolic/folder-music-symbolic.svg")
2017-01-23 17:01:16 +01:00
2017-01-26 04:47:50 +01:00
watch(
"sp current-oneline", 1,
function(widget, stdout, stderr, exitreason, exitcode)
spotify_widget:set_text(stdout)
end
)