[doc] update spotify

This commit is contained in:
tobi-wan-kenobi 2020-06-25 20:00:57 +02:00
parent 542d841622
commit e9b917c214
2 changed files with 15 additions and 18 deletions

View file

@ -1,12 +1,3 @@
import sys
import dbus
import core.module
import core.widget
import core.input
import core.decorators
import util.format
"""Displays the current song being played and allows pausing, skipping ahead, and skipping back.
Requires the following library:
@ -23,6 +14,15 @@ contributed by `yvesh <https://github.com/yvesh>`_ - many thanks!
added controls by `LtPeriwinkle <https://github.com/LtPeriwinkle>`_ - many thanks!
"""
import sys
import dbus
import core.module
import core.widget
import core.input
import core.decorators
import util.format
class Module(core.module.Module):
def __init__(self, config, theme):

View file

@ -1123,24 +1123,21 @@ contributed by `rad4day <https://github.com/rad4day>`_ - many thanks!
spotify
~~~~~~~
Displays the current song being played
Displays the current song being played and allows pausing, skipping ahead, and skipping back.
Requires the following library:
* python-dbus
Parameters:
* spotify.format: Format string (defaults to '{artist} - {title}')
Available values are: {album}, {title}, {artist}, {trackNumber}, {playbackStatus}
* spotify.previous: Change binding for previous song (default is left click)
* spotify.next: Change binding for next song (default is right click)
* spotify.pause: Change binding for toggling pause (default is middle click)
Available options for spotify.previous, spotify.next and spotify.pause are:
LEFT_CLICK, RIGHT_CLICK, MIDDLE_CLICK, SCROLL_UP, SCROLL_DOWN
Available values are: {album}, {title}, {artist}, {trackNumber}
* spotify.layout: Comma-separated list to change order of widgets (defaults to song, previous, pause, next)
Widget names are: spotify.song, spotify.prev, spotify.pause, spotify.next
contributed by `yvesh <https://github.com/yvesh>`_ - many thanks!
added controls by `LtPeriwinkle <https://github.com/LtPeriwinkle>`_ - many thanks!
.. image:: ../screenshots/spotify.png
stock