ubuntu file manager dolphin behaves much better and does more of what i want than nautilus.
current macro for exp uses this. dolphin launches in screen but still causes kde logging; need
to look into this.
also fixed help instructions in screened tunneler script.
if [ -n "$IS_DARWIN" ]; then
# case for mac os x.
define_yeti_alias exp='open'
+ elif [ ! -z "$(which dolphin 2>/dev/null)" ]; then
+ # we prefer dolphin if available.
+ define_yeti_alias exp='screen -L -S dolphin-$RANDOM -d -m dolphin --select '
elif [ ! -z "$(which nautilus 2>/dev/null)" ]; then
- # we prefer nautilus if available.
+ # launch nautilus if available.
define_yeti_alias exp='nautilus'
else
# last ditch is konqueror browser.
function print_instructions()
{
- echo "\
+ echo -e "\
$(basename $0): This script requires at least three parameters and can\n\
take up to five. The parameters are (1) tunnel user at hostname, (2) ssh tunnel\n\
link command, (3) tunnel screen name, (4) tunnel security key, (5) the launch\n\