28 lines
687 B
Python
Executable File
28 lines
687 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from gi.repository import Playerctl, GLib
|
|
|
|
player = Playerctl.Player()
|
|
|
|
def on_metadata(player, e):
|
|
if 'xesam:artist' in e.keys() and 'xesam:title' in e.keys():
|
|
print('Now playing:')
|
|
print('{artist} - {title}'.format(artist=e['xesam:artist'][0], title=e['xesam:title']))
|
|
|
|
def on_play(player):
|
|
print('Playing at volume {}'.format(player.props.volume))
|
|
|
|
def on_pause(player):
|
|
print('Paused the song: {}'.format(player.props.metadata['xesam:title']))
|
|
|
|
player.on('play', on_play)
|
|
player.on('pause', on_pause)
|
|
player.on('metadata', on_metadata)
|
|
|
|
# start playing some music
|
|
player.play()
|
|
|
|
# wait for events
|
|
main = GLib.MainLoop()
|
|
main.run()
|