diff --git a/README.md b/README.md index 4c6d258..42b84e2 100644 --- a/README.md +++ b/README.md @@ -189,7 +189,7 @@ Modules and commandline utilities are only required for modules, the core itself * netifaces (for the modules 'nic', 'traffic') * requests (for the modules 'weather', 'github', 'getcrypto', 'stock', 'currency', 'sun') * power (for the module 'battery') -* dbus (for the module 'spotify') +* dbus (for the module 'spotify', 'deezer') * i3ipc (for the module 'title') * pacman-contrib (for module 'arch-update') * docker (for the module 'docker_ps') diff --git a/bumblebee/modules/deezer.py b/bumblebee/modules/deezer.py new file mode 100644 index 0000000..582c7fc --- /dev/null +++ b/bumblebee/modules/deezer.py @@ -0,0 +1,77 @@ +# pylint: disable=C0111,R0903 + +"""Displays the current song being played +Requires the following library: + * python-dbus +Parameters: + * deezer.format: Format string (defaults to "{artist} - {title}") + Available values are: {album}, {title}, {artist}, {trackNumber}, {playbackStatus} + * deezer.previous: Change binding for previous song (default is left click) + * deezer.next: Change binding for next song (default is right click) + * deezer.pause: Change binding for toggling pause (default is middle click) + Available options for deezer.previous, deezer.next and deezer.pause are: + LEFT_CLICK, RIGHT_CLICK, MIDDLE_CLICK, SCROLL_UP, SCROLL_DOWN +""" + +import bumblebee.input +import bumblebee.output +import bumblebee.engine + +from bumblebee.output import scrollable + +try: + import dbus +except ImportError: + pass + + +class Module(bumblebee.engine.Module): + def __init__(self, engine, config): + super(Module, self).__init__(engine, config, + bumblebee.output.Widget(full_text=self.deezer) + ) + buttons = {"LEFT_CLICK":bumblebee.input.LEFT_MOUSE, + "RIGHT_CLICK":bumblebee.input.RIGHT_MOUSE, + "MIDDLE_CLICK":bumblebee.input.MIDDLE_MOUSE, + "SCROLL_UP":bumblebee.input.WHEEL_UP, + "SCROLL_DOWN":bumblebee.input.WHEEL_DOWN, + } + + self._song = "" + self._format = self.parameter("format", "{artist} - {title}") + prev_button = self.parameter("previous", "LEFT_CLICK") + next_button = self.parameter("next", "RIGHT_CLICK") + pause_button = self.parameter("pause", "MIDDLE_CLICK") + + cmd = "dbus-send --session --type=method_call --dest=org.mpris.MediaPlayer2.deezer \ + /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player." + engine.input.register_callback(self, button=buttons[prev_button], + cmd=cmd + "Previous") + engine.input.register_callback(self, button=buttons[next_button], + cmd=cmd + "Next") + engine.input.register_callback(self, button=buttons[pause_button], + cmd=cmd + "PlayPause") + +## @scrollable + def deezer(self, widget): + return str(self._song) + + def hidden(self): + return str(self._song) == "" + + def update(self, widgets): + try: + bus = dbus.SessionBus() + deezer = bus.get_object("org.mpris.MediaPlayer2.deezer", "/org/mpris/MediaPlayer2") + deezer_iface = dbus.Interface(deezer, 'org.freedesktop.DBus.Properties') + props = deezer_iface.Get('org.mpris.MediaPlayer2.Player', 'Metadata') + playback_status = str(deezer_iface.Get('org.mpris.MediaPlayer2.Player', 'PlaybackStatus')) + self._song = self._format.format(album=str(props.get('xesam:album')), + title=str(props.get('xesam:title')), + artist=','.join(props.get('xesam:artist')), + trackNumber=str(props.get('xesam:trackNumber')), + playbackStatus=u"\u25B6" if playback_status=="Playing" else u"\u258D\u258D" if playback_status=="Paused" else "",) + except Exception: + self._song = "" + +# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4 diff --git a/themes/icons/ascii.json b/themes/icons/ascii.json index 3b24f47..fc36b95 100644 --- a/themes/icons/ascii.json +++ b/themes/icons/ascii.json @@ -247,6 +247,9 @@ "github": { "prefix": "github" }, + "deezer": { + "prefix": "" + }, "spotify": { "prefix": "" }, diff --git a/themes/icons/awesome-fonts.json b/themes/icons/awesome-fonts.json index d5e947f..476d065 100644 --- a/themes/icons/awesome-fonts.json +++ b/themes/icons/awesome-fonts.json @@ -172,6 +172,9 @@ "github": { "prefix": "  " }, + "deezer": { + "prefix": "  " + }, "spotify": { "prefix": "  " }, diff --git a/themes/icons/ionicons.json b/themes/icons/ionicons.json index 9f7a116..cf7813a 100644 --- a/themes/icons/ionicons.json +++ b/themes/icons/ionicons.json @@ -153,6 +153,9 @@ "github": { "prefix": "\uf233" }, + "deezer": { + "prefix": "\uf305" + }, "spotify": { "prefix": "\uf305" },