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