thank you so much. I wonder if I have to do the same in Caja. On my laptop with linux mint Caja does it by default.
I am reading this:
- Code:
Losslessly Rotating JPEGs
Name: Rotate Clockwise
Command: for file in %F; do tempfile=$(mktemp); (jpegtran -copy all -rotate 90 $file > $tempfile); mv -f $tempfile $file; rm -f $tempfile; done
File pattern: *.jpg;*.JPG;*.jpeg;*.JPEG
Appears if selection contains: JPEG Image Files
I added the command , and learnt that %F stands , for "al the file selected" It is working , I will try to change the degrees in order to make it turn to the left aswel, any suggestions?
PS. I don't know if asked before but I would like to keep all this configurations , in case I have to install again.