Ubuntu – How to convert multiple files to png (instead of one) in Thunar custom actions

command lineconvertpngthunar

I have added convert %f %f.png to Thunar's custom actions to convert a selected image to png.

What would be the command that can be added in the same way that would allow selecting multiple files or an entire folder for the same purpose?

Best Answer

That is really easy:

mogrify -format png %N

Note the capital N.