sharkdp / vivid

A themeable LS_COLORS generator with a rich filetype datebase

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

add EXPORT in theme-cycle example

chris-braidwell opened this issue · comments

In the README file #theme-preview section, you have LS_COLORS=....

This should be export LS_COLORS=....

works for me without export, probably because ls is a shell builtin. And this way, we don't mess up the users environment with this loop.

A better fix would probably be to run LS_COLORS=$(…) ls directly.