voicemeeter-compact/vmcompact/configurations.py

63 lines
1.4 KiB
Python
Raw Normal View History

import logging
2022-04-11 18:35:28 +01:00
from pathlib import Path
try:
import tomllib
except ModuleNotFoundError:
import tomli as tomllib
LOGGER = logging.getLogger("configurations")
2022-04-11 18:35:28 +01:00
configuration = {}
config_path = [Path.cwd() / "configs"]
for path in config_path:
if path.is_dir():
filenames = list(path.glob("*.toml"))
configs = {}
for filename in filenames:
name = filename.with_suffix("").stem
try:
with open(filename, "rb") as f:
configs[name] = tomllib.load(f)
except tomllib.TOMLDecodeError:
print(f"Invalid TOML config: configs/{filename.stem}")
2022-04-11 18:35:28 +01:00
for name, cfg in configs.items():
LOGGER.info(f"Loaded configuration configs/{name}")
2022-04-11 18:35:28 +01:00
configuration[name] = cfg
_defaults = {
"configs": {
"config": None,
},
"theme": {
"enabled": True,
"mode": "light",
},
"extends": {
"extended": True,
"extends_horizontal": True,
},
"channel": {
"width": 80,
"height": 130,
},
"mwscroll_step": {
"size": 3,
},
"submixes": {
"default": 0,
},
}
if "app" in configuration:
configuration["app"] = _defaults | configuration["app"]
else:
configuration["app"] = _defaults
def get_configuration(key):
if key in configuration:
return configuration[key]