<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Is there some way to make the Terminal app more readable?</title>
	<atom:link href="http://www.tikirobot.net/wp/2009/07/15/is-there-some-way-to-make-the-terminal-app-more-readable/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tikirobot.net/wp/2009/07/15/is-there-some-way-to-make-the-terminal-app-more-readable/</link>
	<description>Mai Tais and Blinky Lights, Ahoy!</description>
	<lastBuildDate>Sat, 28 Jan 2012 06:57:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: may</title>
		<link>http://www.tikirobot.net/wp/2009/07/15/is-there-some-way-to-make-the-terminal-app-more-readable/comment-page-1/#comment-34534</link>
		<dc:creator>may</dc:creator>
		<pubDate>Tue, 28 Jul 2009 23:45:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2566#comment-34534</guid>
		<description>thanks!  I did figure out how to change the fonts / sizes but it did something weird to all my non-monospaced fonts so I&#039;m just using HelveticaMono :-(  I guess I use Terminal for different reasons than most.</description>
		<content:encoded><![CDATA[<p>thanks!  I did figure out how to change the fonts / sizes but it did something weird to all my non-monospaced fonts so I&#8217;m just using HelveticaMono :-(  I guess I use Terminal for different reasons than most.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajbot</title>
		<link>http://www.tikirobot.net/wp/2009/07/15/is-there-some-way-to-make-the-terminal-app-more-readable/comment-page-1/#comment-34533</link>
		<dc:creator>rajbot</dc:creator>
		<pubDate>Tue, 28 Jul 2009 22:03:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2566#comment-34533</guid>
		<description>Also, have you figured out your font issue?

In Terminal.app, go to Preferences-&gt;Settings-&gt;Font, click &#039;Change...&#039;, and choose any font/size you want.. Even Ed!</description>
		<content:encoded><![CDATA[<p>Also, have you figured out your font issue?</p>
<p>In Terminal.app, go to Preferences->Settings->Font, click &#8216;Change&#8230;&#8217;, and choose any font/size you want.. Even Ed!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajbot</title>
		<link>http://www.tikirobot.net/wp/2009/07/15/is-there-some-way-to-make-the-terminal-app-more-readable/comment-page-1/#comment-34532</link>
		<dc:creator>rajbot</dc:creator>
		<pubDate>Tue, 28 Jul 2009 21:46:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2566#comment-34532</guid>
		<description>non-monospace fonts are bad for programmers because it makes it hard to line things up throughout your source code. 

&lt;pre lang=&quot;javascript&quot;&gt;
var raj = 0x123 &#124; 0x456;
var may = 0x567 &amp; 0x789;
&lt;/pre&gt;

vs

var raj = 0x123 &#124; 0x456;
var may = 0x567 &amp; 0x789;</description>
		<content:encoded><![CDATA[<p>non-monospace fonts are bad for programmers because it makes it hard to line things up throughout your source code.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">var</span> raj <span style="color: #339933;">=</span> 0x123 <span style="color: #339933;">|</span> 0x456<span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> may <span style="color: #339933;">=</span> 0x567 <span style="color: #339933;">&amp;</span> 0x789<span style="color: #339933;">;</span></pre></div></div>

<p>vs</p>
<p>var raj = 0&#215;123 | 0&#215;456;<br />
var may = 0&#215;567 &#038; 0&#215;789;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: may</title>
		<link>http://www.tikirobot.net/wp/2009/07/15/is-there-some-way-to-make-the-terminal-app-more-readable/comment-page-1/#comment-34493</link>
		<dc:creator>may</dc:creator>
		<pubDate>Fri, 17 Jul 2009 13:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2566#comment-34493</guid>
		<description>thanks for the tip! why are non-monospaced fonts bad? 

anyways i think the option to control how text is displayed should be an option for people like me who are not programmers but still need to use the command line for checking stuff in / out, merging files, starting up rails, etc cause it gives me a horrible headache to look at undifferentiated text :-( a guy from apple told me it wasn&#039;t possible without some hackery...

my friend kathryn showed me a roundabout way to make my command prompt pink which makes me a little happier :-) So now it looks like this

&lt;img src=&quot;http://www.tikirobot.net/wp/wp-content/uploads/2009/07/terminal03.jpg&quot; alt=&quot;terminal03&quot; title=&quot;terminal03&quot; width=&quot;505&quot; height=&quot;683&quot; class=&quot;alignnone size-full wp-image-2576&quot; /&gt;

I had to enter the following line in .bash_profile in my home directory

export PS1=&quot;\[\033[3;35m\]\u@\h \w \[\033[0m\]\a&quot; </description>
		<content:encoded><![CDATA[<p>thanks for the tip! why are non-monospaced fonts bad? </p>
<p>anyways i think the option to control how text is displayed should be an option for people like me who are not programmers but still need to use the command line for checking stuff in / out, merging files, starting up rails, etc cause it gives me a horrible headache to look at undifferentiated text :-( a guy from apple told me it wasn&#8217;t possible without some hackery&#8230;</p>
<p>my friend kathryn showed me a roundabout way to make my command prompt pink which makes me a little happier :-) So now it looks like this</p>
<p><img src="http://www.tikirobot.net/wp/wp-content/uploads/2009/07/terminal03.jpg" alt="terminal03" title="terminal03" width="505" height="683" class="alignnone size-full wp-image-2576" /></p>
<p>I had to enter the following line in .bash_profile in my home directory</p>
<p>export PS1=&#8221;\[\033[3;35m\]\u@\h \w \[\033[0m\]\a&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajbot</title>
		<link>http://www.tikirobot.net/wp/2009/07/15/is-there-some-way-to-make-the-terminal-app-more-readable/comment-page-1/#comment-34491</link>
		<dc:creator>rajbot</dc:creator>
		<pubDate>Fri, 17 Jul 2009 05:23:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.tikirobot.net/wp/?p=2566#comment-34491</guid>
		<description>Using a non-monospaced font for terminal would give most programmers a headache, I think.

Here is a tip that I snarfed from tracey: you can add a separator line above your command prompt. Helps keep things nice and tidy:

&lt;pre lang=&quot;bash&quot;&gt;
PS1=\e[4m____________________________________________________________________________\e[m\n     \@ \u@\h.us  \e[1m \w \e[m\n&gt; 
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Using a non-monospaced font for terminal would give most programmers a headache, I think.</p>
<p>Here is a tip that I snarfed from tracey: you can add a separator line above your command prompt. Helps keep things nice and tidy:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">PS1</span>=\e<span style="color: #7a0874; font-weight: bold;">&#91;</span>4m____________________________________________________________________________\e<span style="color: #7a0874; font-weight: bold;">&#91;</span>m\n     \<span style="color: #000000; font-weight: bold;">@</span> \u<span style="color: #000000; font-weight: bold;">@</span>\h.us  \e<span style="color: #7a0874; font-weight: bold;">&#91;</span>1m \<span style="color: #c20cb9; font-weight: bold;">w</span> \e<span style="color: #7a0874; font-weight: bold;">&#91;</span>m\n<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

]]></content:encoded>
	</item>
</channel>
</rss>

