Last active
April 22, 2025 17:10
Thunar Custom Action to convert PNG to WEBP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## | |
| find %d/%n -maxdepth 1 -type f -name '*.png' -print0 | xargs -P 8 -0 -I {} sh -c 'dest="%d/%n/$(basename "{}" .png).webp"; [ ! -f "$dest" ] && cwebp "{}" -o "$dest"' | |
| ## |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

