From 8f57b519a28d0285dfda5e7abc7d1c8eb4be6c68 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Wed, 10 Jun 2020 15:38:01 -0400 Subject: [PATCH] a better minor formatting tweak --- scripts/core/functions.sh | 2 -- scripts/tty/keep_awake_process.sh | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) 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 -- 2.34.1