Ubuntu – ugly color for directories in gnome- terminal

command linegnome-terminalterminator

enter image description here

Some of my folders are highlighted in green

What does the green highlighting means? How can I remove the highlight and make them look similar to others?

terminal : gnome-terminal.

system : Ubuntu 16.04

Best Answer

The answer to your question is hidden in the answers to both What do the different colors mean in the terminal? and How do I change the color for directories with ls in the console?

The cause of the green highlighting is because your directories are writable by other (o+w) and not sticky.

So that explains why they have green highlighting, but you also ask how to remove it. You say "make it look like the others", by which I assume you mean normal directories. Open up your ~/.bashrc and append the following to the bottom:

export LS_COLORS="$LS_COLORS:ow=1;34:tw=1;34:"

save the file and then run

source ~/.bashrc

Now they will look the same as any other directory. Take note though that the system thinks this is information you should be able to see, by doing this you will no longer be able to see it easily. Consider choosing a different background color from the list here. I think purple isn't too bad (ow=1;34;45:)

enter image description here

Explanation:

ow stands for 'other, writable', tw is 'sticky, writable' (the other condition that has a green background). I found these values by examining the contents of $LS_COLORS on my system, looking for values with a background color of 42 (green). The color code has 3 columns (unused columns are left out):

bold;font-color;bg-color