2025-09-26 03:53:54 +02:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
# SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
which optipng || exit
|
2025-10-20 14:25:03 +02:00
|
|
|
find . -type f -iname '*.png' -print0 | xargs -0 -P 16 -I {} optipng -o7 {}
|