From: Chris Koeritz Date: Wed, 10 Jun 2020 19:38:01 +0000 (-0400) Subject: a better minor formatting tweak X-Git-Tag: 2.140.123^2~6^2~4 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=8f57b519a28d0285dfda5e7abc7d1c8eb4be6c68 a better minor formatting tweak --- diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 32fb3782..0f356d6e 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -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 diff --git a/scripts/tty/keep_awake_process.sh b/scripts/tty/keep_awake_process.sh index eca4ad6b..683575b1 100644 --- a/scripts/tty/keep_awake_process.sh +++ b/scripts/tty/keep_awake_process.sh @@ -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