Files
bearhub/bauh/gems/arch/config.py
2020-06-02 17:54:08 -03:00

17 lines
627 B
Python

from bauh.commons.config import read_config as read
from bauh.gems.arch import CONFIG_FILE
def read_config(update_file: bool = False) -> dict:
template = {'optimize': True,
"sync_databases": True,
"clean_cached": True,
'aur': True,
'repositories': True,
"refresh_mirrors_startup": False,
"sync_databases_startup": True,
'mirrors_sort_limit': 5,
'repositories_mthread_download': True,
'automatch_providers': True}
return read(CONFIG_FILE, template, update_file=update_file)