From 8bb680f93294cc3dab0384c6f353e4ff954d1974 Mon Sep 17 00:00:00 2001 From: AustrianToast Date: Tue, 9 Jul 2024 00:21:49 +0200 Subject: [PATCH] I can't be bothered --- gallery-dl/rule34.sh | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gallery-dl/rule34.sh b/gallery-dl/rule34.sh index 72da646..2da64fb 100755 --- a/gallery-dl/rule34.sh +++ b/gallery-dl/rule34.sh @@ -1,10 +1,14 @@ #!/usr/bin/bash +IGREEN="\033[0;92m" # Intense Green +IYELLOW="\033[0;93m" # Intense Yellow +NO_COLOR="\033[0m" # Text Reset + # for testing only rm -f ./archive.sqlite3 ./archive-rule34.sqlite3 ./log.txt rm -rf ./Download/* -[[ -f downloaded_r34.txt ]] || echo "no file to download from" || exit 1 +[[ -f downloaded_r34.txt ]] || echo -e "${IYELLOW}no file to download from${NO_COLOR}" || exit 1 cp downloaded_r34.txt to_download_r34.txt while [ 1 ] @@ -12,16 +16,15 @@ do gallery-dl --config ./config.json --input-file-delete to_download_r34.txt if [ ! -s to_download_r34.txt ]; then - #success! just exit - echo "file empty" + echo -e "${IGREEN}file empty${NO_COLOR}" rm to_download_r34.txt exit 0 fi - echo "file not empty" + echo -e "${IYELLOW}file not empty${NO_COLOR}" if [ $(ping -qc 3 rule34.xxx > /dev/null 2>&1) ]; then - echo "no internet" + echo -e "${IYELLOW}no internet${NO_COLOR}" exit 1 fi - echo "has internet" + echo -e "${IGREEN}has internet${NO_COLOR}" done