step 1: actual conditions working

This commit is contained in:
mrbwburns
2024-01-15 19:08:46 +01:00
parent 2abc15652c
commit d2d7c91bb5
15 changed files with 664 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ for path, dirs, files in os.walk(fonts_location):
if _.endswith('.ttf'):
name = _.split('.ttf')[0]
fonts[name] = os.path.join(path, _)
logs.debug(f"Found fonts: {json.dumps(fonts, indent=4, sort_keys=True)}")
available_fonts = [key for key, values in fonts.items()]