From 769447a3dec76e678abd9d094525b56001c34b6e Mon Sep 17 00:00:00 2001 From: b3nj4m1n Date: Fri, 13 May 2022 15:57:46 +0200 Subject: [PATCH] Output more info --- xdg-ninja.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xdg-ninja.sh b/xdg-ninja.sh index 00fd69e..40fe630 100755 --- a/xdg-ninja.sh +++ b/xdg-ninja.sh @@ -156,9 +156,15 @@ check_program() { # Loops over all files in the programs/ directory and calls check_program enumerate_programs() { + echo -e "\e[1;3mStarting to check your \e[1;36m\$HOME.\e[1;0m" + echo -e "" for prog_filename in ./programs/*; do check_program "$(cat $prog_filename)" done + echo -e "\e[1;3mDone checking your \e[1;36m\$HOME.\e[1;0m" + echo -e "" + echo -e "\e[3mIf you have files in your \e[1;36m\$HOME\e[1;0m that shouldn't be there, but weren't recognised by xdg-ninja, please consider creating a configuration file for it and opening a pull request on github.\e[1;0m" + echo -e "" } enumerate_programs -- 2.47.3