mirror of
http://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-05 08:53:13 +00:00
jump by track number in player
This commit is contained in:
parent
1a95d26238
commit
1be8307e02
|
@ -158,7 +158,7 @@ def player_menu(header='', storage={}):
|
|||
while True:
|
||||
try:
|
||||
player_items_menu = ['Next', 'Prev', 'Pause',
|
||||
'Shuffle', 'Download', 'Info', 'Share']
|
||||
'Shuffle', 'Download', 'Info', 'Share', 'Jump to']
|
||||
if player.pause:
|
||||
player_items_menu[2] = 'Play'
|
||||
else:
|
||||
|
@ -204,6 +204,10 @@ def player_menu(header='', storage={}):
|
|||
track_info_output(track)
|
||||
elif select == 'Share':
|
||||
send_listen_activity()
|
||||
elif select == 'Jump to':
|
||||
jump_to_idx = int(fzf.prompt(range(1, len(player.playlist_filenames)+1))[0])
|
||||
jump_to_idx -= 1
|
||||
player.playlist_play_index(jump_to_idx)
|
||||
elif select == 'Like':
|
||||
src.fw_api.favorite_track(
|
||||
player_fw_storage.storage.get(track_url_to_uuid())['id'])
|
||||
|
|
Loading…
Reference in a new issue