summaryrefslogtreecommitdiff
path: root/rhythmbox-widget/rhythmbox.lua
blob: 4a54d4b13d1f58b1b447d4ff113b8f3b0315adb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()
rhythmbox_icon:set_image("/usr/share/icons/Arc-Icons/devices/22/audio-speakers.png")

watch(
    "rhythmbox-client --no-start --print-playing", 1,
    function(widget, stdout, stderr, exitreason, exitcode)
        rhythmbox_widget:set_text(stdout)
    end
)