mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-13 22:54:45 -04:00
11 lines
221 B
Python
11 lines
221 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pathlib import Path
|
|
|
|
from applbuild.generator import xbuild
|
|
|
|
bitmaps_dir = Path("../pngs")
|
|
x_out_dir = Path("../themes") / "macOSBigSur"
|
|
|
|
xbuild(bitmaps_dir, x_out_dir)
|