diff --git a/build.py b/build.py new file mode 100644 index 0000000..5f0a21e --- /dev/null +++ b/build.py @@ -0,0 +1,9 @@ +import json +import os +from clickgen import build_cursor_theme + +sizes = [24, 28] +with open('./hotspots.json') as hotspot_file: + file_data = json.loads(hotspot_file.read()) + hotspots = file_data["hotspots"] + print(hotspots)