Last active
April 22, 2025 17:10
-
-
Save coffebar/290731e6b0fe4de9a8d697ff1d911abb to your computer and use it in GitHub Desktop.
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