diff options
author | streetturtle <streetturtle@gmail.com> | 2017-01-30 21:38:50 -0500 |
---|---|---|
committer | streetturtle <streetturtle@gmail.com> | 2017-01-30 21:40:01 -0500 |
commit | c4826fd21340d34e3592b0c8ca24fc068e52c6ef (patch) | |
tree | dbbc8fd3df693cfc57cbc1ff5246164f8fc41c01 /spotify-widget | |
parent | a079c79ab81a4bc2f7cf7971db6373fefe1e6110 (diff) |
new widgets added
Diffstat (limited to 'spotify-widget')
-rw-r--r-- | spotify-widget/spotify.lua | 17 |
1 files changed, 17 insertions, 0 deletions
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 |