2025-09-26 03:53:54 +02:00
|
|
|
#!/bin/sh -e
|
2025-10-04 05:40:10 -04:00
|
|
|
|
2025-09-26 03:53:54 +02:00
|
|
|
# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2025-10-04 05:40:10 -04:00
|
|
|
|
|
|
|
# Optimizes assets of Eden (requires OptiPng)
|
|
|
|
|
2025-09-26 03:53:54 +02:00
|
|
|
which optipng || exit
|
2025-10-04 05:40:10 -04:00
|
|
|
find . -type f -name "*.png" -exec optipng -o7 {} \;
|