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.
|
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.
|
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:
CLICOLOR=1 simply enables coloring of your terminal. LSCOLORS=... specifies how to color specific items. |
|||||||||||||||||||||
|
|
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
This gives you a nice colored prompt. To add the colored To test, just run a Side note about the colors:
The colors are preceded by an escape sequence
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
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. |
|||||
|
|
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) :
Then you edit or create ~/.bashrc file and write an alias to the ls command :
Now you have to type If you want more options in your |
|||||
|
|
Check what $TERM gives: mine is xterm-color and ls -alG then does colorised output. |
|||
|
|
|
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.
Once I added the following to my ~/.profile file iTerm 2 was able to override the colors.
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. |
||||
|
|
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 |
||||
|
|
|
If you are using tcsh, then edit your
Where, like Martin says, LSCOLORS specifies the color scheme you want to use. To generate the LSCOLORS you want to use, checkout this site |
||||
