Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Mac having just got one after working with Ubuntu Linux for some time. Among the many things I'm trying to figure out is absence of colors in my the terminal window - like the ones that are shown (on linux) when you run 'ls -la' or 'git status'... I just can't figure out how to activate them in the actual shell.

share|improve this question
5  
possible duplicate of How to configure Mac Terminal to have color ls output – Roger Pate May 24 '10 at 0:31

closed as off topic by Dave Jarvis, TryTryAgain, robbrit, Ivan Nevostruev, Toon Krijthe Apr 9 at 20:41

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

7 Answers

up vote 210 down vote accepted

I know, this thread is old but the issue not.

Here is a solution i've found to enable the global terminal colors

Edit your .profile or .bashrc or /etc/profile (depending on availability) or for mountain lion .bash_profile file in your home directory and add following code:

export CLICOLOR=1

export LSCOLORS=GxFxCxDxBxegedabagaced

CLICOLOR=1 simply enables coloring of your terminal.

LSCOLORS=... specifies how to color specific items.

share|improve this answer
6  
just did this by adding it to .bash_profile and it works. didn't work when I added it to .profile though. Thanks! – Morten Aug 14 '11 at 7:40
5  
I just edited my /etc/profile and it works like a charm. – Krister Andersson Apr 5 '12 at 9:33
4  
on mountain lion modify .bash_profile and everything works – Nicola Peluchetti Aug 13 '12 at 20:16
4  
You, sir, are a god among mere mortals. Tyvm. – Cody S Dec 20 '12 at 20:59
1  
To @Morten and any others struggling with their bash profiles, see these answers for an explanation and a solution: stackoverflow.com/a/7780055/665488, superuser.com/a/244990. – Cam Jackson Jan 15 at 0:12
show 8 more comments

You can use the Linux based syntax in one of your startup scripts. Just tested this on an OS X Mountain Lion box.

eg. in your ~/.bash_profile

export TERM="xterm-color"
PS1='\[\e[0;33m\]\u\[\e[0m\]@\[\e[0;32m\]\h\[\e[0m\]:\[\e[0;34m\]\w\[\e[0m\]\$ '

This gives you a nice colored prompt. To add the colored ls output, you can add alias ls="ls -G".

To test, just run a source ~/.bash_profile to update your current terminal.

Side note about the colors: The colors are preceded by an escape sequence \e and defined by a color value, composed of [style;color+m] and wrapped in an escaped [] sequence. eg.

  • red = \[\e[0;31m\]
  • bold red (style 1) = \[\e[1;3m\]
  • clear coloring = \[\e[0m\]

I always add a slightly modified color-scheme in the root's .bash_profile to make the username red, so I always see clearly if I'm logged in as root (handy to avoid mistakes if I have many terminal windows open).

in /root/.bash_profile

PS1='\[\e[0;31m\]\u\[\e[0m\]@\[\e[0;32m\]\h\[\e[0m\]:\[\e[0;34m\]\w\[\e[0m\]\$ '

For all my SSH accounts online I make sure to put the hostname in red, to distinguish if I'm in a local or remote terminal.

share|improve this answer
1  
how do you edit bash_profile for ssh accounts online? – Andrew Anthony Gerst Apr 8 at 20:52

If you want to have your ls colorized you have to edit your ~/.bash_profile file and add the following line (if not already written) :

source .bashrc

Then you edit or create ~/.bashrc file and write an alias to the ls command :

alias ls="ls -G"

Now you have to type source .bashrc in a terminal if already launched, or simply open a new terminal.

If you want more options in your ls juste read the manual ( man ls ). Options are not exactly the same as in a GNU/Linux system.

share|improve this answer
6  
A somewhat better option is to replace the 'alias' definition with 'export CLICOLOR=" "'. This has the advantage of usually continuing to work even if you switch shells during a terminal session (as long as environment variables are inherited - aliases aren't). – Ned Deily Oct 11 '09 at 17:32

Check what $TERM gives: mine is xterm-color and ls -alG then does colorised output.

share|improve this answer

MartinVonMartinsgrün and 4Levels methods confirmed work great on Mac OS X Mountain Lion.

The file I needed to update was ~/.profile.

However, I couldn't leave this question without recommending my favorite application, iTerm 2.

iTerm 2 lets you load global color schemes from a file. Really easy to experiment and try a bunch of color schemes.

Here's a screenshot of the iTerm 2 window and the color preferences. iTerm2 Color Preferences Screenshot Mac

Once I added the following to my ~/.profile file iTerm 2 was able to override the colors.

export CLICOLOR=1
export LSCOLORS=GxFxCxDxBxegedabagaced
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '

Here are a couple of great repositories with some nice presets:

Bonus: Choose "Show/hide iTerm2 with a system-wide hotkey" and bind the key with BetterTouchTool for an instant hide/show the terminal with a mouse gesture.

share|improve this answer
iTerm2 crashed often on my system, so i switched over to oh-my-zsh github.com/robbyrussell/oh-my-zsh. There are also themes available – MartinVonMartinsgrün Apr 11 at 13:48

When I worked on Mac OS X in the lab I was able to get the terminal colors from using Terminal (rather than X11) and then editing the profile (from the Mac menu bar). The interface is a bit odd on the colors, but you have to set the modified theme as default.

Further settings worked by editing .bashrc.

share|improve this answer

If you are using tcsh, then edit your ~/.cshrc file to include the lines:

setenv CLICOLOR 1
setenv LSCOLORS dxfxcxdxbxegedabagacad

Where, like Martin says, LSCOLORS specifies the color scheme you want to use.

To generate the LSCOLORS you want to use, checkout this site

share|improve this answer
1  
bash has been the default in OS X since October 2003. – crazysim Feb 26 at 18:53
I think you're right. I just got a new mac and it had bash as default. I guess IT kept setting up my macs at work to have tcsh by default. – smaccoun Mar 7 at 0:22

Not the answer you're looking for? Browse other questions tagged or ask your own question.