configure change OK/KO colours
authorNiki Roo <niki@nikiroo.be>
Wed, 18 Sep 2019 20:29:59 +0000 (22:29 +0200)
committerNiki Roo <niki@nikiroo.be>
Wed, 18 Sep 2019 20:29:59 +0000 (22:29 +0200)
configure.sh

index 1e12397d0e9d81e6ee3c588018d89f516209ccc3..15ae18088ba8d961b401fa8187334898ebe17fad 100755 (executable)
@@ -68,8 +68,10 @@ if [ "`whereis tput`" = "tput:" ]; then
        ko='"[ !! ]"';
        cols=80;
 else
-       ok='"`tput bold`[`tput setf 2` OK `tput init``tput bold`]`tput init`"';
-       ko='"`tput bold`[`tput setf 4` !! `tput init``tput bold`]`tput init`"';
+       #ok='"`tput bold`[`tput setf 2` OK `tput init``tput bold`]`tput init`"';
+       #ko='"`tput bold`[`tput setf 4` !! `tput init``tput bold`]`tput init`"';
+       ok='"`tput bold`[`tput setaf 2` OK `tput init``tput bold`]`tput init`"';
+       ko='"`tput bold`[`tput setaf 1` !! `tput init``tput bold`]`tput init`"';
        cols='"`tput cols`"';
 fi;