On Mon, Jan 13, 2025 at 10:13 PM joe--- via PLUG-discuss <plug-discuss@lists.phxlinux.org> wrote:
How to change listed file name colors
when the colors are too light and thus
hard to read? An example here:

https://upquick.com/cls.colors.jpg

Put this in your .bashrc

          export LS_OPTIONS=" --color=never"

and for a good measure redefine any 'ls' aliases you may have (examples below)

          alias l='ls --color=never -Fx'
          alias l.='ls --color=never -d .[a-zA-Z0-9]* -Fx'
          alias l1='ls --color=never -1F'
          alias la='ls --color=never -AFx'
          alias lh='ls --color=never -AFlh '
          alias ll='ls --color=never -AFl'
          alias lt='ls --color=never -AFlt '

--
Arun Khan