From d26f679d754d6ebd6edf437ba7f0d692b603a2fd Mon Sep 17 00:00:00 2001 From: "T. Joseph Carter" Date: Tue, 3 Mar 2015 14:09:32 -0800 Subject: [PATCH] Don't depend on \e (see if this fixes color Twinaphex!) --- script-modules/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script-modules/util.sh b/script-modules/util.sh index 413d699b..fec3c620 100644 --- a/script-modules/util.sh +++ b/script-modules/util.sh @@ -9,7 +9,7 @@ echo_cmd() { color() { [ -n "$NO_COLOR" ] && return - echo -ne "\e[0;${1:-0}m" + echo -ne "[0;${1:-0}m" }