mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-01-20 11:05:27 +00:00
9 lines
200 B
Python
9 lines
200 B
Python
import player
|
|
import service
|
|
|
|
|
|
class Player(player.Player):
|
|
|
|
def onLibrespotTrackChanged(self, art, artist, title, **kwargs):
|
|
service.notification(heading=title, message=artist, icon=art)
|