Initial commit

This commit is contained in:
2026-03-19 17:30:04 +01:00 Verified
commit 87f585b6c0
98 changed files with 2746 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# fonts/__init__.py
from pathlib import Path
from PIL import ImageFont
class Font:
Chakra = str(Path(__file__).with_name("chakra.ttf"))
Arial = str(Path(__file__).with_name("arial.otf"))
f60 = ImageFont.truetype(Chakra, 60) # Time
f55 = ImageFont.truetype(Chakra, 55) # Temp
f25 = ImageFont.truetype(Chakra, 25) # Temp C
f14 = ImageFont.truetype(Chakra, 14) # Wind
f20 = ImageFont.truetype(Chakra, 20) # Date / Info
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.