diff --git a/config.py b/config.py index f3c790a..171357a 100644 --- a/config.py +++ b/config.py @@ -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 diff --git a/helper.py b/helper.py index 3db2c7b..cdf4c20 100644 --- a/helper.py +++ b/helper.py @@ -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)