summaryrefslogtreecommitdiff
path: root/spotify-widget-v4
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@gmail.com>2017-01-30 21:38:50 -0500
committerstreetturtle <streetturtle@gmail.com>2017-01-30 21:40:01 -0500
commitc4826fd21340d34e3592b0c8ca24fc068e52c6ef (patch)
treedbbc8fd3df693cfc57cbc1ff5246164f8fc41c01 /spotify-widget-v4
parenta079c79ab81a4bc2f7cf7971db6373fefe1e6110 (diff)
new widgets added
Diffstat (limited to 'spotify-widget-v4')
-rw-r--r--spotify-widget-v4/spotify.lua17
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
-)