Kharacternyk/barva

i cant change the colour of the output

Closed this issue · 4 comments

video of issue: https://streamable.com/xl8ihm
What am i doing wrong? can i hardcode it so i dont need to set the vars ever?

thank you

command
BARVA_TARGET=#FF0000 barva works

The issue in the video is that you are setting shell variables instead of environmental variables. Use export BARVA_TARGET=something instead of BARVA_TARGET=something.

You can put export BARVA_TARGET=something into your .bashrc or .bash_profile to make it persistent.

thank you