BINS in NautilusYou can edit BINS description files of your
images directly in Nautilus
using bins-edit-gui. To do so, put the following
shell script in the file
#!/bin/sh # # Script to edit BINS xml description files from Nautilus. # # Written by crafterm at debian.org, Sun Mar 16 21:26:26 CET 2003 quoted=$(echo -e "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" | \ awk 'BEGIN { FS = "\n" } { printf "\"%s\" ", $1 }' | \ sed -e s#\"\"##) eval "bins-edit-gui $quoted" Then, make the script executable by going in the file's directory and running the following command : chmod u+rx BINS
By putting that shell script there, you can use
Nautilus to select all images you want to
edit/add info about and then right click,
Thanks to Zaheer Merali for this tip and to Marcus Crafter for the script. |