I want to change the color of particular file type:
- for .c files red
- for .out files green
- for .sh files orange
Like this, how to make these colors as default color for the corresponding file type?
I want to change the color of particular file type:
Like this, how to make these colors as default color for the corresponding file type?
I needed the color difference whenever try ls -l
or ls
commmand.
So I just used $LS_COLOR
variable and modified it like this.
LS_COLORS='*.c=01;32:*.out=31:*.sh=01;35:'
Use the dircolors
command.
For example if you want to have the Solarised theme
, download the required dircolors
database file from this link
To use it just do the following:
eval `dircolors /path/to/dircolorsdb`
For more instructions refer the readme of the previous link.
Some other useful links:
By writing condition for gtk~.css or some action for Nautilus.
Or maybe just using custom iconset?
Need to say, such terminal command like ls
is using folders and files coloring, and perhaps this feature have the base to be extended.
Look this answer: Can we have Mac like 'labels' on GNOME?