a better minor formatting tweak
authorChris Koeritz <cak0l@virginia.edu>
Wed, 10 Jun 2020 19:38:01 +0000 (15:38 -0400)
committerChris Koeritz <cak0l@virginia.edu>
Wed, 10 Jun 2020 19:38:01 +0000 (15:38 -0400)
scripts/core/functions.sh
scripts/tty/keep_awake_process.sh

index 32fb378237063265ae69a7ad16b29092d5110356..0f356d6ef8d094550f32c8c924f5a37b529e0d7d 100644 (file)
@@ -937,8 +937,6 @@ return 0
   # keep_awake: sends a message to the screen from the background.
   function keep_awake()
   {
-    # blank line to get off previous command line before job prints.
-    echo
     # just starts the keep_awake process in the background.
     bash $FEISTY_MEOW_SCRIPTS/tty/keep_awake_process.sh &
       # this should leave the job running as %1 or a higher number if there
index eca4ad6b12e60ef2ecb30f9fb88b1d52b649d457..683575b19c257fe73b0ce43de3512a277990064d 100644 (file)
@@ -12,7 +12,7 @@ source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
 
 # loop sort of forever.
 while true; do
-  echo "trying not to fall asleep at $(date_stringer)"
+  echo -e "\n\ntrying not to fall asleep at $(date_stringer)\n"
   # magical number of seconds to sleep...
   sleep 64
 done