Merge pull request #646 from smitajit/master
[module] playerctl to displays information about the current song in …
This commit is contained in:
commit
a394469c0f
5 changed files with 87 additions and 0 deletions
61
bumblebee_status/modules/contrib/playerctl.py
Executable file
61
bumblebee_status/modules/contrib/playerctl.py
Executable file
|
@ -0,0 +1,61 @@
|
||||||
|
# pylint: disable=C0111,R0903
|
||||||
|
|
||||||
|
"""Displays information about the current song in vlc, audacious, bmp, xmms2, spotify and others
|
||||||
|
|
||||||
|
Requires the following executable:
|
||||||
|
* playerctl
|
||||||
|
|
||||||
|
contributed by `smitajit <https://github.com/smitajit>`_ - many thanks!
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
|
import core.module
|
||||||
|
import core.widget
|
||||||
|
import core.input
|
||||||
|
import util.cli
|
||||||
|
|
||||||
|
class Module(core.module.Module):
|
||||||
|
def __init__(self,config , theme):
|
||||||
|
widgets = [
|
||||||
|
core.widget.Widget(name="playerctl.prev"),
|
||||||
|
core.widget.Widget(name="playerctl.main", full_text=self.description),
|
||||||
|
core.widget.Widget(name="playerctl.next"),
|
||||||
|
]
|
||||||
|
super(Module, self).__init__(config, theme , widgets)
|
||||||
|
|
||||||
|
core.input.register(widgets[0], button=core.input.LEFT_MOUSE,
|
||||||
|
cmd="playerctl previous")
|
||||||
|
core.input.register(widgets[1], button=core.input.LEFT_MOUSE,
|
||||||
|
cmd="playerctl play-pause")
|
||||||
|
core.input.register(widgets[2], button=core.input.LEFT_MOUSE,
|
||||||
|
cmd="playerctl next")
|
||||||
|
|
||||||
|
self._status = None
|
||||||
|
self._tags = None
|
||||||
|
|
||||||
|
def description(self, widget):
|
||||||
|
return self._tags if self._tags else "..."
|
||||||
|
|
||||||
|
def update(self):
|
||||||
|
self._load_song()
|
||||||
|
|
||||||
|
def state(self, widget):
|
||||||
|
if widget.name == "playerctl.prev":
|
||||||
|
return "prev"
|
||||||
|
if widget.name == "playerctl.next":
|
||||||
|
return "next"
|
||||||
|
return self._status
|
||||||
|
|
||||||
|
def _load_song(self):
|
||||||
|
info = ""
|
||||||
|
try:
|
||||||
|
status = util.cli.execute("playerctl status").lower()
|
||||||
|
info = util.cli.execute("playerctl metadata xesam:title")
|
||||||
|
except :
|
||||||
|
self._status = None
|
||||||
|
self._tags = None
|
||||||
|
return
|
||||||
|
self._status = status.split("\n")[0].lower()
|
||||||
|
self._tags = info.split("\n")[0][:20]
|
||||||
|
|
||||||
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
|
@ -149,6 +149,18 @@ Parameters:
|
||||||
|
|
||||||
.. image:: ../screenshots/ping.png
|
.. image:: ../screenshots/ping.png
|
||||||
|
|
||||||
|
playerctl
|
||||||
|
~~~~~~~~~~
|
||||||
|
Displays information about the current song in vlc, audacious, bmp, xmms2, spotify and others
|
||||||
|
|
||||||
|
Requires the following executable:
|
||||||
|
* playerctl
|
||||||
|
|
||||||
|
contributed by `smitajit <https://github.com/smitajit>`_ - many thanks!
|
||||||
|
|
||||||
|
.. image:: ../screenshots/playerctl.png
|
||||||
|
|
||||||
|
|
||||||
pulseaudio
|
pulseaudio
|
||||||
~~~~~~~~~~
|
~~~~~~~~~~
|
||||||
|
|
||||||
|
|
BIN
screenshots/playerctl.png
Normal file
BIN
screenshots/playerctl.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
|
@ -65,6 +65,13 @@
|
||||||
"prev": { "prefix": "" },
|
"prev": { "prefix": "" },
|
||||||
"next": { "prefix": "" }
|
"next": { "prefix": "" }
|
||||||
},
|
},
|
||||||
|
"playerctl": {
|
||||||
|
"playing": { "prefix": "" },
|
||||||
|
"paused": { "prefix": "" },
|
||||||
|
"stopped": { "prefix": "" },
|
||||||
|
"prev": { "prefix": "" },
|
||||||
|
"next": { "prefix": "" }
|
||||||
|
},
|
||||||
"pasink": {
|
"pasink": {
|
||||||
"muted": { "prefix": "" },
|
"muted": { "prefix": "" },
|
||||||
"unmuted": { "prefix": "" }
|
"unmuted": { "prefix": "" }
|
||||||
|
|
|
@ -47,6 +47,13 @@
|
||||||
"prev": { "prefix": "\uf4ab" },
|
"prev": { "prefix": "\uf4ab" },
|
||||||
"next": { "prefix": "\uf4ad" }
|
"next": { "prefix": "\uf4ad" }
|
||||||
},
|
},
|
||||||
|
"playerctl": {
|
||||||
|
"playing": { "prefix": "\uf488" },
|
||||||
|
"paused": { "prefix": "\uf210" },
|
||||||
|
"stopped": { "prefix": "\uf24f" },
|
||||||
|
"prev": { "prefix": "\uf4ab" },
|
||||||
|
"next": { "prefix": "\uf4ad" }
|
||||||
|
},
|
||||||
"pasink": {
|
"pasink": {
|
||||||
"muted": { "prefix": "\uf3b9" },
|
"muted": { "prefix": "\uf3b9" },
|
||||||
"unmuted": { "prefix": "\uf3ba" }
|
"unmuted": { "prefix": "\uf3ba" }
|
||||||
|
|
Loading…
Reference in a new issue