diff options
author | Case Duckworth | 2020-05-22 23:06:30 -0500 |
---|---|---|
committer | Case Duckworth | 2020-05-22 23:06:30 -0500 |
commit | d212d90fb364b7e992f2e4557abf8dd5dca803ae (patch) | |
tree | 2348cfea8690997fa9d1c2ea7f18a3b7d3a27e14 | |
parent | Change file descriptors and add functions (diff) | |
download | bollux-d212d90fb364b7e992f2e4557abf8dd5dca803ae.tar.gz bollux-d212d90fb364b7e992f2e4557abf8dd5dca803ae.zip |
Fix colors
-rwxr-xr-x | bollux | 2 |
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 | ||