These files are always sourced (never executed directly), so the #!/bin/bash shebang is inert and misleading. Drop it consistently across rc.d/*, profile.d/*, and aliases.d/*.
11 lines
382 B
Plaintext
11 lines
382 B
Plaintext
# INFO:
|
|
# vivid is a generator for the LS_COLORS environment variable that controls the colorized output of ls, tree, fd, bfs, dust and many other tools.
|
|
# ➜ https://github.com/sharkdp/vivid
|
|
# 💡Use command `vivid themes` to see available themes
|
|
|
|
if (command -v vivid &>/dev/null); then
|
|
THEME=tokyonight-moon
|
|
LS_COLORS="$(vivid generate ${THEME})"
|
|
export LS_COLORS
|
|
fi
|