📂 Out directory config in config.py

This commit is contained in:
ful1e5 2020-08-26 12:19:39 +05:30
parent 4dbd066cd8
commit 5afade1d64
2 changed files with 2 additions and 2 deletions

View file

@ -7,6 +7,7 @@ name = "macOSBigSur"
sizes = [24, 28, 32, 40, 48, 56, 64, 72, 80, 88, 96]
bitmaps_dir = "./bitmaps"
package_dir = "./themes"
temp_folder = tempfile.mkdtemp()
# Cleanup Configs

View file

@ -2,11 +2,10 @@ import shutil
import json
import sys
from config import name, temp_folder, bitmaps_dir, win_out, x11_out, window_install_inf_content, windows_cursors
from config import name, temp_folder, bitmaps_dir, win_out, x11_out, window_install_inf_content, windows_cursors, package_dir
from os import path, listdir, rename, remove
package_dir = "./themes"
x11_out_dir = path.join(package_dir, x11_out)
win_out_dir = path.join(package_dir, win_out)