Convert spotify.pause to an action

This commit is contained in:
Nikolai Prokoschenko 2020-06-30 09:03:52 +02:00 committed by GitHub
parent f75f1a9f26
commit 054e6cc5d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -89,9 +89,9 @@ class Module(core.module.Module):
).Get("org.mpris.MediaPlayer2.Player", "PlaybackStatus") ).Get("org.mpris.MediaPlayer2.Player", "PlaybackStatus")
) )
if playback_status == "Playing": if playback_status == "Playing":
widget.set("state", "playing")
else:
widget.set("state", "paused") widget.set("state", "paused")
else:
widget.set("state", "playing")
elif widget_name == "spotify.next": elif widget_name == "spotify.next":
widget_map[widget] = { widget_map[widget] = {
"button": core.input.LEFT_MOUSE, "button": core.input.LEFT_MOUSE,