discord theme, top bar fix, organized folders

This commit is contained in:
Shiro-Nek0
2026-02-26 02:55:20 -03:00
parent 3f47b3cda4
commit 8cc5138888
5 changed files with 205 additions and 121 deletions

View File

@@ -2,8 +2,8 @@ import os
from PIL import Image
# --- CONFIGURATION ---
CARD_DIR = 'keychain_cards'
OUTPUT_PDF = 'keychain_3x3_perfect.pdf'
CARD_DIR = os.path.join(os.getcwd(),'keychain_cards')
OUTPUT_PDF = os.path.join(os.getcwd(), 'keychain_3x3_perfect.pdf')
# A4 at 300 DPI
PAGE_W, PAGE_H = 2480, 3508
@@ -67,4 +67,4 @@ def generate_printable_pdf():
print(f"✅ Created {OUTPUT_PDF}. Now go print it and stop crying.")
if __name__ == "__main__":
generate_printable_pdf()
generate_printable_pdf()

Binary file not shown.