aboutsummaryrefslogtreecommitdiff
path: root/doc/manual/rl-next/clicolor-clarity.md
blob: 8a289e3625f4771c1ef5b883fa4c62f52912acc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
synopsis: "Better usage of colour control environment variables"
cls: [1699, 1702]
credits: [jade]
category: Improvements
---

Lix now heeds `NO_COLOR`/`NOCOLOR` for more output types, such as that used in `nix search`, `nix flake metadata` and similar.

It also now supports `CLICOLOR_FORCE`/`FORCE_COLOR` to force colours regardless of whether there is a terminal on the other side.

It now follows rules compatible with those described on <https://bixense.com/clicolors/> with `CLICOLOR` defaulted to enabled.

That is to say, the following procedure is followed in order:
- NO_COLOR or NOCOLOR set

  Always disable colour
- CLICOLOR_FORCE or FORCE_COLOR set

  Enable colour
- The output is a tty; TERM != "dumb"

  Enable colour
- Otherwise

  Disable colour