My terminal is all black and white. :P No colours. Terminal output is highlighted by different colours to represent data. Like if we do ls, folder and files have separate colour but my terminal shows only one colour.
I'm on Ubuntu 10.10 using gnome-terminal
Terminal colors (and other commands) are controlled by configurations in your
~/.bashrc
file. If you do a little googling for .bashrc configurations you can find some excellent custom configurations that you can use. The one I use is a combination of several different ones I found on the net as well as some custom changes I made to it. Here's a screenshot of it (in cygwin, since I'm currently at work).And here's the contents of my ~/.bashrc file. If you look under aliases, the alias for
ls
appends the color flags to the command automatically, so if you just want colors forls
, then that's the line to use.I have this in a file called
~/.LESS_TERMCAP
:And then in my
~/.bashrc
:In particular, it makes
man
pages more colorful. You could speed it up by hard-coding the color codes instead of usingtput
.