blob: c9b3789152ae7b3631016059bc00b091761a093a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
local wibox = require("wibox")
local awful = require("awful")
local watch = require("awful.widget.watch")
spotify_widget = wibox.widget.textbox()
spotify_widget:set_font('Play 9')
-- 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/devices/22/audio-headphones.png")
watch(
"sp current-oneline", 1,
function(widget, stdout, stderr, exitreason, exitcode)
spotify_widget:set_text(stdout)
end
)
|