2017-01-31 03:38:50 +01:00
|
|
|
local wibox = require("wibox")
|
|
|
|
local awful = require("awful")
|
|
|
|
local watch = require("awful.widget.watch")
|
|
|
|
|
|
|
|
rhythmbox_widget = wibox.widget.textbox()
|
|
|
|
rhythmbox_widget:set_font('Play 9')
|
|
|
|
|
|
|
|
rhythmbox_icon = wibox.widget.imagebox()
|
2017-02-02 03:45:15 +01:00
|
|
|
rhythmbox_icon:set_image("/usr/share/icons/Arc/devices/22/audio-speakers.png")
|
2017-01-31 03:38:50 +01:00
|
|
|
|
|
|
|
watch(
|
|
|
|
"rhythmbox-client --no-start --print-playing", 1,
|
|
|
|
function(widget, stdout, stderr, exitreason, exitcode)
|
|
|
|
rhythmbox_widget:set_text(stdout)
|
|
|
|
end
|
|
|
|
)
|