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

I want to make my hostname in my terminal orange. How do I do that?

share|improve this question

3 Answers

up vote 5 down vote accepted

First off, I'm not sure what terminal you're using or if it will even support the color orange. Mine supports the following: Red, Blue, Green, Cyan, Yellow, Magenta, Black & White. And here's how I get colors in my terminal:


You need to first load the colors using autoload. I use the following to load the colors and assign them to meaningful names

#load colors
autoload colors && colors
for COLOR in RED GREEN YELLOW BLUE MAGENTA CYAN BLACK WHITE; do
    eval $COLOR='%{$fg_no_bold[${(L)COLOR}]%}'  #wrap colours between %{ %} to avoid weird gaps in autocomplete
    eval BOLD_$COLOR='%{$fg_bold[${(L)COLOR}]%}'
done
eval RESET='$reset_color'

You can set the hostname in your prompt using the %m string. So to set, say a red hostname, you'd do

${RED}%m${WHITE}\>

which will print something like bneil.so>

share|improve this answer
This is a great snippet @yoda. Do you know if there is a way to 1) Know what colors are loaded in autoload colors && colors? 2) Know what colors are supported by your terminal? – user815423426 Aug 26 '11 at 15:09
1  
These are the colors that are loaded by autoload. That little loop merely renames them to more intuitive color names (e.g., RED instead of fg_no_bold_RED or something like that). If you're running Mac OS X 10.6 and below, the default Terminal.app will support only 16 colors. You can download iterm2 for Mac which is a great terminal and supports 256 colors. With OS X 10.7, I think Terminal.app supports 256 colors (although I can't verify as I haven't upgraded). You can also use this handy script to see how many colors it supports. – Lorem Ipsum Aug 26 '11 at 23:52

Print

<ESC>[33mHostname<ESC>[0m

Being the escape character \x1b

share|improve this answer

Your question does not make it clear if you are familiar with the idea of customising the zsh prompt, but are having trouble with colours codes.

There's plenty of information on the internet. Here's three links:

http://www.nparikh.org/unix/prompt.php
http://www.zshwiki.org/home/config/prompt
http://stevelosh.com/blog/2010/02/my-extravagant-zsh-prompt/

They should cover both customising the prompt and using colour codes to assign colours.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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