Readable, colourful Terminal in Snow Leopard

27/01/2010

Terminal screenshot

  1. Install SIMBL: http://www.culater.net/software/SIMBL/SIMBL.php
  2. Install the Snow-Leopard-friendly version of the TerminalColors plugin for SIMBL: http://github.com/timmfin/terminalcolours
  3. Install the IR_Black theme and set it as default in Terminal.app preferences: http://blog.infinitered.com/entries/show/6
  4. Turn on CLI color in your .bash_profile:
    export CLICOLOR=1;
  5. Bonus round: set yourself a colourful bash prompt: http://devblog.bluefuton.com/2008/05/coloured-bash-prompt-in-os-x/
No Comments

Coloured bash prompt in OS X

7/05/2008

Pop this into /etc/bashrc for a green and blue one…

export PS1="\[\e[32;1m\]\u@\h:\[\e[34;1m\]\w\[\e[0m\]$ "

More colour codes here: http://blog.infinitered.com/entries/show/6

No Comments

Terminal: moving to the start and end of the line

3/02/2006

Ctrl-A start of line
Ctrl-E end of line

No Comments