The now_playing module does not use player_name anymore so the spotify module is broken. Change it to use player so it works correctly.
9 lines
189 B
Python
9 lines
189 B
Python
from i3pystatus.now_playing import NowPlaying
|
|
|
|
|
|
class Spotify(NowPlaying):
|
|
"""
|
|
Get Spotify info using dbus interface. Based on `now_playing`_ module.
|
|
"""
|
|
player = "spotify"
|