diff options
Diffstat (limited to 'spotify-widget-v4')
-rw-r--r-- | spotify-widget-v4/spotify.lua | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/spotify-widget-v4/spotify.lua b/spotify-widget-v4/spotify.lua deleted file mode 100644 index f61c249..0000000 --- a/spotify-widget-v4/spotify.lua +++ /dev/null @@ -1,17 +0,0 @@ -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/places/symbolic/folder-music-symbolic.svg") - -watch( - "sp current-oneline", 1, - function(widget, stdout, stderr, exitreason, exitcode) - spotify_widget:set_text(stdout) - end -) |