From f2c78152cc4723f728033be8ce1136c7c4888f50 Mon Sep 17 00:00:00 2001 From: Xavier Logerais Date: Thu, 16 Jul 2026 18:54:01 +0200 Subject: [PATCH] feat(rc): Add support for vivid tool to beautify LS_COLORS --- rc.d/vivid | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/rc.d/vivid b/rc.d/vivid index b4980b2..4965e2f 100644 --- a/rc.d/vivid +++ b/rc.d/vivid @@ -1,7 +1,12 @@ #!/bin/bash +# 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=one-dark # Use command `vivid themes` to see available themes + THEME=tokyonight-moon LS_COLORS="$(vivid generate ${THEME})" export LS_COLORS fi