Quote:
Originally Posted by pini
(and even a 'rename.app' would have to be called manually!
|
Why?
Once you download extensions.cfg, you can add 'rename.app' as an app to "open" the .odt. "Opening" the .odt will just quietly make an .odt.epub copy of the file. You find yourself in the library again and this time you open the .epub file in desired application.
----- WARNING! Untested code ahead! -----
###rename.app might look like this:
#!/bin/sh
Infile="$1"
Outfile="$1.epub"
cp "$Infile" "$Outfile"
----- end of untested code -----