germedeb
4fd3c9a220
and I added the copyright xd (REUSE specification 3.0) this commit adds all the license stuff to all the files.
12 lines
228 B
Bash
Executable File
12 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# SPDX-FileCopyrightText: 2022 debgerme <fossgerme@tuta.io>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
for FILE in _build/aleta/*/*/*.png
|
|
do
|
|
optipng -o7 "$FILE" >/dev/null 2>&1
|
|
echo optimized: "$FILE"
|
|
done
|