mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 18:55:47 +02:00
a0f7128a28
Former-commit-id: 81574fd7bc
21 lines
367 B
Bash
21 lines
367 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Compress png files in ./docs/src and ./home/wallpapers
|
|
|
|
[[ -d "./docs" ]] || (echo "Folder ./docs not found" && exit 1)
|
|
|
|
# Main images
|
|
for file in ./docs/src/*.png; do
|
|
optipng "$file"
|
|
done
|
|
|
|
# Theme's images
|
|
for file in ./docs/src/*/*.png; do
|
|
optipng "$file"
|
|
done
|
|
|
|
# Wallpapers
|
|
for file in ./home/wallpapers/*.png; do
|
|
optipng "$file"
|
|
done
|