[modules/spotify] Fix formatting
Fixed by black
This commit is contained in:
parent
20916811c5
commit
7e0be1bf14
1 changed files with 7 additions and 3 deletions
|
@ -79,9 +79,13 @@ class Module(core.module.Module):
|
||||||
"cmd": self.__cmd + "PlayPause",
|
"cmd": self.__cmd + "PlayPause",
|
||||||
}
|
}
|
||||||
playback_status = str(
|
playback_status = str(
|
||||||
dbus.Interface(dbus.SessionBus().get_object(
|
dbus.Interface(
|
||||||
"org.mpris.MediaPlayer2.spotify", "/org/mpris/MediaPlayer2"), "org.freedesktop.DBus.Properties")
|
dbus.SessionBus().get_object(
|
||||||
.Get("org.mpris.MediaPlayer2.Player", "PlaybackStatus")
|
"org.mpris.MediaPlayer2.spotify",
|
||||||
|
"/org/mpris/MediaPlayer2",
|
||||||
|
),
|
||||||
|
"org.freedesktop.DBus.Properties",
|
||||||
|
).Get("org.mpris.MediaPlayer2.Player", "PlaybackStatus")
|
||||||
)
|
)
|
||||||
if playback_status == "Playing":
|
if playback_status == "Playing":
|
||||||
widget.set("state", "playing")
|
widget.set("state", "playing")
|
||||||
|
|
Loading…
Add table
Reference in a new issue