From 2c387ecc1049454aa1d37d093e37e2b8e37aecf3 Mon Sep 17 00:00:00 2001 From: streetturtle Date: Mon, 30 Jan 2017 21:38:50 -0500 Subject: new widgets added --- rhythmbox-widget/rhythmbox.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 rhythmbox-widget/rhythmbox.lua (limited to 'rhythmbox-widget') diff --git a/rhythmbox-widget/rhythmbox.lua b/rhythmbox-widget/rhythmbox.lua new file mode 100644 index 0000000..4a54d4b --- /dev/null +++ b/rhythmbox-widget/rhythmbox.lua @@ -0,0 +1,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 +) \ No newline at end of file -- cgit v1.2.3