How to change the bg color of chmod 777 directories in tcsh

colorcommand-line-interfaceshellslackware

On my MacBook Pro, I have iTerm and use the (black background) Pastel color set. World writable directories show up with a yellow background behind grey text. This I can live with, since the grey is dark enough to still be visible when surrounded by the muted yellow color.

But when I connect to my company's Slackware servers (via ssh and tcsh as my shell on the remote side), 777 directories show up as solid blocks of light green, as both bg and text color are identical (or close enough to make the text impossible to read).

How do I change the color used for the backgrounds of world-readable (777) directories?

Thanks!

-Brian

Best Answer

I take it that this is output from ls, rather than tab-completion of shells? (I know at least one shell which can colourise shell tab-completions but you don't say, so I'll assume ls).

Use $LS_COLORS, often initialised via the dircolors(1) command. dircolors -p to see the defaults, take the output from the two systems and diff.

Drop the desired config into ~/.dircolors and then:

set d=$HOME/.dircolors
if ( -r $d ) eval `dircolors -c $d`

[modified from the info docs for dircolors invocation, in the coreutils package]