mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-13 14:44:45 -04:00
20 lines
577 B
Python
20 lines
577 B
Python
import json
|
|
from clickgen import build_cursor_theme
|
|
|
|
from config import name, sizes, delay, bitmaps_dir, temp_folder
|
|
from helper import cleanup, init_build
|
|
|
|
|
|
def build() -> None:
|
|
init_build()
|
|
# Building Cursor Theme
|
|
with open('./hotspots.json', 'r') as hotspot_file:
|
|
hotspots = json.loads(hotspot_file.read())
|
|
build_cursor_theme(name, image_dir=bitmaps_dir,
|
|
cursor_sizes=sizes, out_path=temp_folder, hotspots=hotspots, archive=False, delay=delay)
|
|
# helper method
|
|
cleanup()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
build()
|