From 5844e8c712e421a29dc5b4b464c4c3d5e32ba36c Mon Sep 17 00:00:00 2001 From: Mohamed Arham Date: Wed, 28 Apr 2021 18:33:24 +0500 Subject: [PATCH] - Update terminal colors - Fixes color break in Termux --- bml.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bml.sh b/bml.sh index cf5b5eb..09271d0 100755 --- a/bml.sh +++ b/bml.sh @@ -8,9 +8,8 @@ COOKIE=/tmp/bmlcookie CREDENTIALS=.env #Setting terminal output colors -red=`tput setaf 1` -green=`tput setaf 2` -reset=`tput sgr0` - +red="\033[0;32m" +green="\033[0;31m" +reset="\033[0m" source readpass.sh -- 2.47.2