about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2020-05-22 23:06:30 -0500
committerCase Duckworth2020-05-22 23:06:30 -0500
commitd212d90fb364b7e992f2e4557abf8dd5dca803ae (patch)
tree2348cfea8690997fa9d1c2ea7f18a3b7d3a27e14
parentChange file descriptors and add functions (diff)
downloadbollux-d212d90fb364b7e992f2e4557abf8dd5dca803ae.tar.gz
bollux-d212d90fb364b7e992f2e4557abf8dd5dca803ae.zip
Fix colors
-rwxr-xr-xbollux2
1 files changed, 1 insertions, 1 deletions
diff --git a/bollux b/bollux index b027eab..05c916b 100755 --- a/bollux +++ b/bollux
@@ -47,7 +47,7 @@ log() { # log [LEVEL] [<] MESSAGE
47 output="$output${output:+$'\n'}$line" 47 output="$output${output:+$'\n'}$line"
48 done 48 done
49 fi 49 fi
50 printf '\e[3%dm%s\e[0m:\t%s\n' "$((lvl + 1))" "$PRGN" "$output" >&2 50 printf '\e[34m%s\e[0m:\t%s\n' "$PRGN" "$output" >&2
51 fi 51 fi
52} 52}
53 53