Verifique se o terminal suporta cores de 24 bits / true

0

Em um script de shell, como posso testar se o terminal suporta cores de 24 bits ou cores verdadeiras?

Relacionados: Esta questão é sobre imprimir um arquivo de 24 bits Padrão de teste / truecolor para verificação do globo ocular

    
por Tom Hale 18.06.2018 / 04:02

1 resposta

0

Esta fonte diz para verificar se $COLORTERM contém 24bit ou truecolor .

sh

[ "$COLORTERM" = truecolor ] || [ "$COLORTERM" = 24bit ]

bash / zsh :

[[ $COLORTERM =~ ^(truecolor|24bit)$ ]]
    
por 18.06.2018 / 04:11