mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-21 02:35:15 -04:00
💬 Logs
This commit is contained in:
parent
e30b845dcb
commit
8ccdd30c45
1 changed files with 4 additions and 1 deletions
5
build.py
5
build.py
|
@ -1,4 +1,5 @@
|
||||||
import json
|
import json
|
||||||
|
|
||||||
from clickgen import build_cursor_theme
|
from clickgen import build_cursor_theme
|
||||||
|
|
||||||
from config import configs, sizes, delay, temp_folder
|
from config import configs, sizes, delay, temp_folder
|
||||||
|
@ -6,7 +7,6 @@ from helper import init_build, pack_it
|
||||||
|
|
||||||
|
|
||||||
def build(config) -> None:
|
def build(config) -> None:
|
||||||
init_build()
|
|
||||||
|
|
||||||
build_cursor_theme(
|
build_cursor_theme(
|
||||||
config['name'],
|
config['name'],
|
||||||
|
@ -21,10 +21,13 @@ def build(config) -> None:
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
init_build()
|
||||||
|
|
||||||
# read hotspots file
|
# read hotspots file
|
||||||
with open('./hotspots.json', 'r') as hotspot_file:
|
with open('./hotspots.json', 'r') as hotspot_file:
|
||||||
hotspots = json.loads(hotspot_file.read())
|
hotspots = json.loads(hotspot_file.read())
|
||||||
|
|
||||||
# building themes
|
# building themes
|
||||||
for config in configs:
|
for config in configs:
|
||||||
|
print('🌈 Building %s Theme ...' % config['name'])
|
||||||
build(config)
|
build(config)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue