summaryrefslogtreecommitdiff
path: root/rhythmbox-widget
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@users.noreply.github.com>2020-12-07 15:33:55 -0500
committerGitHub <noreply@github.com>2020-12-07 15:33:55 -0500
commitd4971690cec1e074999e730d87045e578d71e43c (patch)
treeb0f05079840eba5467e14bdcd093ad3ed5362cf4 /rhythmbox-widget
parentf078748e76eacae599cf0ad06120d9fff54f8fa5 (diff)
parented2b256407291d8edadfcea9380029633cc7d9d8 (diff)
Merge pull request #224 from streetturtle/comply-with-luacheck
Comply with luacheck
Diffstat (limited to 'rhythmbox-widget')
-rw-r--r--rhythmbox-widget/rhythmbox.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/rhythmbox-widget/rhythmbox.lua b/rhythmbox-widget/rhythmbox.lua
deleted file mode 100644
index 1287587..0000000
--- a/rhythmbox-widget/rhythmbox.lua
+++ /dev/null
@@ -1,16 +0,0 @@
-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/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