Skip to content

Instantly share code, notes, and snippets.

@coffebar
Last active April 22, 2025 17:10
Show Gist options
  • Save coffebar/290731e6b0fe4de9a8d697ff1d911abb to your computer and use it in GitHub Desktop.
Save coffebar/290731e6b0fe4de9a8d697ff1d911abb to your computer and use it in GitHub Desktop.
Thunar Custom Action to convert PNG to WEBP
##
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