
Code: Select all
#!/bin/sh
# send selected file via Bluetooth. Workaround for
# gnome-bluetooth with gnome 2.10
# Matthias Böhm <m.boehm@mbnetworx.net>
filepath=$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS
gnome-obex-send $filepath
Yes, I saw this too in a pre-release tour: http://www.gnome.org/~davyd/gnome-2-12/zervus wrote:I heard something about the problem being fixed in Gnome 2.12, which will be out in September.

Code: Select all
#!/bin/sh
btsend=$(echo -e "$NAUTILUS_SCRIPT_SELECTED_FILE_PATHS" | awk 'BEGIN {
FS = "\n" } { printf "\"%s\" ", $1 }' | sed -e s#\"\"##)
eval "gnome-obex-send $btsend"Where exactly do you find that folder?*Note remember place this in your nautilus scipts folder and make the file executable.
File-->Scripts-->Open Scripts Folder