Skip to content

Instantly share code, notes, and snippets.

@coffebar
Last active April 22, 2025 17:10
  • Select an option

Select an option

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