From e0f01b28a8eb85370261f49827da45de51a16b6d Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20A=2E=20Holm?= Date: Wed, 10 Jul 2024 01:58:50 +0200 Subject: [PATCH] mc: Disable colors on Termux Termux displays spaces as quotation marks on reversed background, very annoying. 68a99354-3e4f-11ef-8176-83850402c3ce --- mc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mc b/mc index 447bede5..4ed2a9ef 100755 --- a/mc +++ b/mc @@ -11,7 +11,7 @@ #============================================================================== progname=mc -VERSION=0.1.1 +VERSION=0.1.2 sess_str="sess -d mc -t c_mc --" test "$1" = "--version" && unset sess_str @@ -26,7 +26,7 @@ elif test -x /usr/local/bin/mc; then elif test -x /usr/bin/mc; then $sess_str /usr/bin/mc -d "$@" elif test -x /data/data/com.termux/files/usr/bin/mc; then - $sess_str /data/data/com.termux/files/usr/bin/mc -d "$@" + $sess_str /data/data/com.termux/files/usr/bin/mc -b -d "$@" else echo mc is not installed here. >&2 exit 1 -- 2.11.4.GIT