<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Chris J Mears &#187; osx</title>
	<atom:link href="http://chrisjmears.com/tag/osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrisjmears.com</link>
	<description>Web Developer in Ruby on Rails and CakePHP</description>
	<lastBuildDate>Thu, 17 Dec 2009 22:24:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting Themes for Terminal in Mac OS X</title>
		<link>http://chrisjmears.com/2009/02/setting-themes-for-terminal-in-mac-os-x/</link>
		<comments>http://chrisjmears.com/2009/02/setting-themes-for-terminal-in-mac-os-x/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 16:24:22 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Geeky Stuff]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://chrisjmears.com/?p=129</guid>
		<description><![CDATA[After spending way too long using a plain black and white color scheme in Terminal and being unimpressed with the theme options under Terminal &#62; Preferences&#8230; &#62; Settings Tab, I decided to do a little bit of searching to remedy the situation.

I ran across Todd Werth&#8217;s IR_Black Terminal theme, which seemed to be very easy [...]]]></description>
			<content:encoded><![CDATA[<p>After spending way too long using a plain black and white color scheme in Terminal and being unimpressed with the theme options under Terminal &gt; Preferences&#8230; &gt; Settings Tab, I decided to do a little bit of searching to remedy the situation.</p>
<p><span id="more-129"></span></p>
<p>I ran across Todd Werth&#8217;s <a title="Todd Werth's IR_Black Terminal theme" href="http://blog.infinitered.com/entries/show/6" target="_blank">IR_Black Terminal theme</a>, which seemed to be very easy on the eyes.  Actually, at the time of this writing, Todd Werth&#8217;s theme is the <em>only</em> theme I&#8217;ve found.</p>
<h3>Steps for setting a theme for Mac OS X Terminal</h3>
<ol>
<li>Download and install <a title="SIMBL" href="http://www.culater.net/software/SIMBL/SIMBL.php" target="_blank">SIMBL</a></li>
<li>Download and install <a title="TerminalColors Bundle" href="http://www.culater.net/software/TerminalColors/TerminalColors.php" target="_blank">TerminalColors Bundle</a></li>
<li>Download and install <a title="Todd Werth's IR_Black Theme" href="http://blog.infinitered.com/entries/show/6" target="_blank">Todd Werth&#8217;s IR_Black theme</a></li>
</ol>
<p><em>Note: This article assumes you know your way around Mac OS X, can install programs, and are comfortable manipulate files.  Should you need extra help, please <a title="Contact Me!" href="/contact" target="_self">contact me</a> or post a comment below and I&#8217;ll go into finer detail.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://chrisjmears.com/2009/02/setting-themes-for-terminal-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Manually Configure Time Machine&#8217;s Backup Interval</title>
		<link>http://chrisjmears.com/2008/08/manually-configure-time-machines-backup-interval/</link>
		<comments>http://chrisjmears.com/2008/08/manually-configure-time-machines-backup-interval/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 16:55:31 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Geeky Stuff]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[time machine]]></category>

		<guid isPermaLink="false">http://chrisjmears.com/?p=34</guid>
		<description><![CDATA[Time Machine has always annoyed me with how frequent it wants to backup.  It takes no consideration what you are currently doing and if you have Time Capsule, your workflow grinds to a complete halt while Time Machine and Time Capsule get buddy-buddy over your network.
My issue is not with Time Machine itself.  It&#8217;s a [...]]]></description>
			<content:encoded><![CDATA[<p>Time Machine has always annoyed me with how frequent it wants to backup.  It takes no consideration what you are currently doing and if you have Time Capsule, your workflow grinds to a complete halt while Time Machine and Time Capsule get buddy-buddy over your network.</p>
<p>My issue is not with Time Machine itself.  It&#8217;s a great idea and great program!  I just wish there was a better control panel for it.  Oh well, time to get down and dirty.</p>
<p>From this <a title="Mac OS X Hints: Set the Time Machine backup interval" href="http://www.macosxhints.com/article.php?story=200710291721156" target="_blank">hint</a> I was able to set the Time Machine backup schedule from one hour to six hours.</p>
<p>Basically, in Terminal, you:<br />
<code><br />
cd /System/Library/LaunchDaemons<br />
sudo vi com.apple.backupd-auto.plist<br />
</code></p>
<p><strong>Note:</strong> I&#8217;m using the vi editor to do this hack. You can choose any editor you wish, just make sure you have proper permissions.</p>
<p>Once open, you change the property:<br />
<code><br />
&lt;key&gt;StartInterval&lt;/key&gt;<br />
&lt;integer&gt;3600&lt;/integer&gt;<br />
</code></p>
<p>Where 3600 is the number of seconds you want Time Machine to run.  I changed mine to 21600 and voila!</p>
<p>Now maybe I can play a DVD without Time Machine interupting my full screen.</p>
]]></content:encoded>
			<wfw:commentRss>http://chrisjmears.com/2008/08/manually-configure-time-machines-backup-interval/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
