switched away from nautilus to dolphin
authorChris Koeritz <fred@gruntose.com>
Fri, 4 May 2018 21:28:38 +0000 (17:28 -0400)
committerChris Koeritz <fred@gruntose.com>
Fri, 4 May 2018 21:28:38 +0000 (17:28 -0400)
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.

scripts/core/common.alias
scripts/security/screened_tunneler.sh

index 09eb72ec44246c4e87652d28ad8117c6e18d94b1..9ebddb766692435d543912849e7e24ca41200e0b 100644 (file)
@@ -41,8 +41,11 @@ if [ "$OS" != "Windows_NT" ]; then
   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.
index 82352cc7a699077a2d39139b276f1de28e9d9336..62301ccd14ebf0f86e40643815deede8a29b4803 100644 (file)
@@ -36,7 +36,7 @@ LAUNCH_IT="$1"; shift
 
 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\