In my daily work, I often connect to Linux boxes from my Mac. With several terminal windows open, it’s nice to easily see which ones are connected to my local Mac, and which ones are connected to other machines. One can certainly insert the host name into the system prompt. Here’s an example that contains the time, host name, and current directory:

>export PS1="\n\t \h:\w\n> "

21:02:45 my_host_name:~
>

Wait a minute, I thought, I wonder if there’s a Unicode character that can be included in the prompt that will jump out at me to tell me where I am…so I searched the web, and on http://hea-www.harvard.edu/~fine/OSX/unicode_apple_logo.html was the apple logo!

So I now have the Apple logo as the very first character of my system prompt. A picture grabs the eye more effectively than a letter, so it’s much easier now to tell that this terminal is connected to my Mac:

```

export PS1=”\n \t \h:\w\n> “

 21:00:50 my_host_name:~

```