Merge pull request #224 from iKarith/master

Don't depend on \e (see if this fixes color Twinaphex!)
This commit is contained in:
Twinaphex 2015-03-03 23:26:40 +01:00
commit 1a97361137

View File

@ -9,7 +9,7 @@ echo_cmd() {
color() {
[ -n "$NO_COLOR" ] && return
echo -ne "\e[0;${1:-0}m"
echo -n "[0;${1:-0}m"
}