mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-14 07:04:47 -04:00
9 lines
231 B
Python
9 lines
231 B
Python
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)
|