Make settings icon open a more complete menu

This commit is contained in:
miruka
2020-09-16 22:59:20 -04:00
parent 22e7dc7e8d
commit 03e4f9b85e
4 changed files with 45 additions and 3 deletions

View File

@@ -420,6 +420,12 @@ class Backend:
return Path(self.appdirs.user_config_dir)
async def get_theme_dir(self) -> Path:
path = Path(self.appdirs.user_data_dir) / "themes"
path.mkdir(parents=True, exist_ok=True)
return path
async def load_settings(self) -> tuple:
"""Return parsed user config files."""