2024-02-19 13:20:20 +00:00
|
|
|
#!/bin/sh -ex
|
|
|
|
|
|
|
|
|
|
# Copyright 2023 Johannes Marbach
|
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2025-04-15 16:17:52 +00:00
|
|
|
# Dependencies:
|
|
|
|
|
# python-pypng
|
|
|
|
|
# python-lz4
|
2024-02-19 13:20:20 +00:00
|
|
|
|
2025-04-15 16:17:52 +00:00
|
|
|
root=$(git rev-parse --show-toplevel)
|
2024-02-19 13:20:20 +00:00
|
|
|
|
2025-04-15 16:17:52 +00:00
|
|
|
"$root/lvgl/scripts/LVGLImage.py" \
|
|
|
|
|
--ofmt C \
|
|
|
|
|
--cf "ARGB8888" \
|
|
|
|
|
--output "$root/shared/cursor" \
|
|
|
|
|
--verbose \
|
|
|
|
|
"$root/shared/cursor/cursor.png"
|