mirror of
https://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-22 17:09:20 +02:00
Server instanses counter
This commit is contained in:
parent
67aa2257cb
commit
bd095da8ac
|
@ -74,8 +74,11 @@ def main():
|
||||||
if selected == 'Switch instance':
|
if selected == 'Switch instance':
|
||||||
with open('config.json', 'rt') as f:
|
with open('config.json', 'rt') as f:
|
||||||
conf = json.loads(f.read())
|
conf = json.loads(f.read())
|
||||||
list_instances = conf.get('public_list_instances') + settings.get_new_funkwhale_servers()
|
public_server_list_instances = settings.get_new_funkwhale_servers()
|
||||||
instance = fzf.prompt(list_instances, '--header \'Select instance\'')[0]
|
new_ins_count = len(settings.get_new_funkwhale_servers())
|
||||||
|
list_instances = conf.get('public_list_instances') + public_server_list_instances
|
||||||
|
instance = fzf.prompt(list_instances,
|
||||||
|
'--header='+quote(f'Select instance\nServer instances: +{new_ins_count}'))[0]
|
||||||
select_instance(instance)
|
select_instance(instance)
|
||||||
if selected == 'Sign in':
|
if selected == 'Sign in':
|
||||||
print(f'''
|
print(f'''
|
||||||
|
|
Loading…
Reference in New Issue