<?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>Church Of The Geek &#187; os x</title>
	<atom:link href="http://churchofthegeek.com/category/os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://churchofthegeek.com</link>
	<description>Who shot who in the what now?</description>
	<lastBuildDate>Wed, 25 Nov 2009 16:16:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How To:  OS X Selective Desktop Lock Hotkey</title>
		<link>http://churchofthegeek.com/2008/11/12/osx-desktop-lock-hotkey/</link>
		<comments>http://churchofthegeek.com/2008/11/12/osx-desktop-lock-hotkey/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 20:17:36 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[screensaver]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=854</guid>
		<description><![CDATA[UPDATE: 10.6 users should follow the guide here. 10.5 or below users can follow the guide below. Despite all the compliments I pile on Mac OS X here, it is missing one feature that can be found on every version of Windows since Windows 2000: A keyboard hot key that locks the desktop regardless of [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://churchofthegeek.com/images/dtlock-icon.jpg" alt="yay security!" border="0" align="left" hspace="5" />UPDATE:  10.6 users should follow the guide <a href="http://artofgeek.com/2009/09/08/lock-your-macs-screen-like-in-windows-snow-leopard-edition/">here</a>.  10.5 or below users can follow the guide below.</p>
<p>Despite all the compliments I pile on Mac OS X here, it is missing one feature that can be found on every version of Windows since Windows 2000:  A keyboard hot key that locks the desktop regardless of the screen saver&#8217;s normal security setting.</p>
<p>Hit the link below for the rest of the guide&#8230;</p>
<p><span id="more-854"></span></p>
<p>One thing Linux, OS X, and Windows all have in common is a static screen saver lock setting.  This setting tells the OS to lock the desktop if the screen saver is ever activated, or to leave it alone and never lock the desktop.  In Windows, you can leave the persistent lock setting off and still lock the desktop by pressing the key with the Windows logo on it and L at the same time.  I like to think of this as &#8220;selective desktop locking&#8221;.</p>
<p>I use my Macbook at work every day, but I don&#8217;t want it to always lock the desktop whenever the screen saver turns on because I take it home every night. </p>
<p>Surprisingly, after myself and a couple other Mac fans at work spent some time trying to find a solution, there doesn&#8217;t appear to be any existing info online covering how to set this up on an OS X system.  So the three of us decided to set it up ourselves.</p>
<p><strong>Requirements:<br />
- OS X (written while on 10.5.5, works fine on 10.5.6)<br />
- <a href="http://docs.blacktree.com/quicksilver/what_is_quicksilver">Quicksilver</a><br />
- Keychain menu bar icon<br />
- Apple&#8217;s Script Editor (you may need to install the Developer Tools from your OS X system discs, not sure though)</strong></p>
<p>To add the Keychain menu bar icon, open the Keychain Access application (found in Applications -> Utilities).  Open preferences for the app, and check the box marked &#8220;Show Status in Menu Bar&#8221;.  You should now have a small padlock icon in your menu bar, like so:</p>
<p><img src="http://churchofthegeek.com/images/dtlock-menubar.jpg" alt="Menu Bar Icon" align="center" border="0"></p>
<p><strong>Note the position of the icon (far right).</strong>  If you want to follow this guide exactly your icon will need to be in the same place, otherwise you will need to modify some of the values in the script below.  Hold down the apple button/command button/whatever you want to call it and drag the icon with the mouse to move it.</p>
<p>Now we need to create a script that will do the actual work.  Open the Script Editor application (Applications -> AppleScript) and create a new script with the following code:</p>
<blockquote><p>
tell application &#8220;System Events&#8221;<br />
     click menu bar item -1 of menu bar 1 of application process &#8220;SystemUIServer&#8221;<br />
     keystroke (key code 125)<br />
     keystroke return<br />
end tell
</p></blockquote>
<p>You should have something that looks like this:</p>
<p><img src="http://churchofthegeek.com/images/dtlock-script.png" alt="Lock Script" align="center" border="0" /></p>
<p>A very special thanks to mark at the osxhints.com forums for helping me figure this part out!</p>
<p>You can save this as either a script or an application and it should still work correctly, however we have seen some odd behaviors from it when saved as a script, <strong>so I recommend you save it as an application</strong>.  Open the File menu and choose Save As.  In the window that appears name it whatever you want (I called mine LockDesktop) and change the File Format drop down menu to Application.  I have a directory I called Files inside my user directory that I use for items like this one, but you can put it wherever you want.</p>
<p>Now it&#8217;s time for some Quicksilver-fu.  Open Quicksilver&#8217;s preferences and go to the Triggers tab.  Click the + button at the bottom of the window and add a new hotkey setup like this:</p>
<p><img src="http://churchofthegeek.com/images/dtlock-trigger.jpg" align="center" border="0"></p>
<p>Click the Save button.  Click on your new trigger and then the i icon near the lower right to open the inspector screen.  Set a Hot Key (I used <strong>⌘ L</strong>).</p>
<p><img src="http://churchofthegeek.com/images/dtlock-hotkey.png" align="center" border="0"></p>
<p>All done!  Close the window (make sure your new trigger is saved and shows up in the list), close the Quicksilver preferences, and test your new hot key.  You may need to adjust the variables in the &#8220;click menu bar item X of X&#8221; line of the script if your keychain icon is not in the far right corner.</p>
<p>One last important item:  While this setup replicates selective desktop locking, it is not perfect.  Sometimes, especially after a reboot or if you just logged in, the application can take several seconds to launch and run correctly.  Subsequent launches will be speedier but can still take a couple seconds to complete.  </p>
<p>Questions/comments/etc are welcome, just post a comment here.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2008/11/12/osx-desktop-lock-hotkey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NicePlayer Finally Updated</title>
		<link>http://churchofthegeek.com/2008/06/11/niceplayer-finally-updated/</link>
		<comments>http://churchofthegeek.com/2008/06/11/niceplayer-finally-updated/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 14:02:35 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=809</guid>
		<description><![CDATA[There there blog, I know I&#8217;ve neglected you.  I&#8217;ve been super busy and &#8230; yes, yes ok I know excuses won&#8217;t cut it here.  You&#8217;re pissed.  I&#8217;m sorry. Here is a peace offering instead:  My favorite (and default) video player for OS X, NicePlayer, has finally been updated in the form of a preview build.  [...]]]></description>
			<content:encoded><![CDATA[<p>There there blog, I know I&#8217;ve neglected you.  I&#8217;ve been super busy and &#8230; yes, yes ok I know excuses won&#8217;t cut it here.  You&#8217;re pissed.  I&#8217;m sorry.</p>
<p>Here is a peace offering instead:  My favorite (and default) video player for OS X, NicePlayer, has finally been <a href="http://jay.tuley.name/build/">updated in the form of a preview build</a>.  This preview includes the return of remote control support, something which has been broken since 10.5 originally came out.  Yes, that is quite a long time now and yes, I did wonder up until the moment I found this preview build if the application was dead in the water.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2008/06/11/niceplayer-finally-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Better VLC Icon</title>
		<link>http://churchofthegeek.com/2008/01/06/a-better-vlc-icon/</link>
		<comments>http://churchofthegeek.com/2008/01/06/a-better-vlc-icon/#comments</comments>
		<pubDate>Sun, 06 Jan 2008 21:44:47 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2008/01/06/a-better-vlc-icon/</guid>
		<description><![CDATA[Having tried a lot of the alternative video players available for OS X 10.5 right now, VLC has become my favorite choice. This mostly has to due with flexibility and the fact that it supports the Apple remote. Up until now I defaulted to NicePlayer (which also supports the remote but only under 10.4). The [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://macrabbit.com/goodies/"><img src="http://churchofthegeek.com/images/vlcicon.png" border="0" align="left" hspace="5"></a>Having tried a lot of the alternative video players available for OS X 10.5 right now, <a href="http://www.videolan.org/vlc/">VLC</a> has become my favorite choice.</p>
<p>This mostly has to due with flexibility and the fact that it supports the Apple remote.  Up until now I defaulted to <a href="http://niceplayer.sourceforge.net/">NicePlayer</a> (which also supports the remote but only under 10.4).</p>
<p>The only problem with VLC is the application icon which is about as smooth as a car wreck in the dock.  MacRabbit has a <a href="http://macrabbit.com/goodies/">very nice replacement icon set</a> which also supports file types.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2008/01/06/a-better-vlc-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leopard Stuff</title>
		<link>http://churchofthegeek.com/2007/11/24/leopard-stuff/</link>
		<comments>http://churchofthegeek.com/2007/11/24/leopard-stuff/#comments</comments>
		<pubDate>Sun, 25 Nov 2007 03:43:56 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2007/11/24/leopard-stuff/</guid>
		<description><![CDATA[A collection of tips and other goodies I&#8217;ve read recently about OS X 10.5 Leopard: The 512&#215;512 icon support gives an already polished operating system an even cleaner look. Try looking at your applications using Quick Look and you&#8217;ll see what I mean. Apple even hid a few things in their default icon set, like [...]]]></description>
			<content:encoded><![CDATA[<p>A collection of tips and other goodies I&#8217;ve read recently about OS X 10.5 Leopard:</p>
<p>The 512&#215;512 icon support gives an already polished operating system an even cleaner look.  Try looking at your applications using <a href="http://www.simplehelp.net/2007/10/30/an-overview-of-leopards-quick-look/">Quick Look</a> and you&#8217;ll see what I mean.  Apple even hid a few things in their default icon set, like the Font Book icon (letters are A F K) and a letter written in the TextEdit icon (<a href="http://www.usingmac.com/2007/11/13/leopard-coverflow-secret-of-icons">good overview w/pics here</a>).</p>
<p>You can find all of the default icons for 10.5 at /System » Library » CoreServices » CoreTypes.bundle (right-click and open package contents) » Contents » Resources.    (via <a href="http://www.macosxhints.com/article.php?story=20071018143409599">macosxhints.com</a>)<br />
<a href="http://blog.wired.com/gadgets/2007/10/leopard-bsod-ic.html"><br />
public.generic-pc.icns</a> is my personal favorite <img src='http://churchofthegeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://www.tuaw.com/2007/10/26/24-hours-of-leopard-stacks/">Stacks</a> is a cool feature and is actually somewhat useful, but Apple should take note of <a href="http://t.ecksdee.org/post/19001860">these sweet overlays</a>.</p>
<p>If you have the developer tools installed <a href="http://www.macosxhints.com/article.php?story=20071103185237239">you will find two extra screen savers</a> located at /Developer/Examples/Quartz Composer/Compositions/Screen Savers.  Copy the two files to /Library/Screen Savers or ~/Library/Screen Savers.    The Security screen saver is fun and is actually motion activated.<br />
<a href="http://www.leopardtricks.com/?p=122"><br />
Photobooth can now make animated GIFs</a>.  Handy for buddy icons.</p>
<p>Drives/devices mounted remotely seem to show up in the Shared section of the finder sidebar instead of the Devices section like in 10.4.  Until I realized this I was only able to open them using Quicksilver.  Turns out you can drag them in the sidebar from Shared to Devices, and the move is even permanent after the drive is removed and then remounted.</p>
<p>Quick Look is pure awesomeness in a bottle.<br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/MqjH0_E4pxQ&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/MqjH0_E4pxQ&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/11/24/leopard-stuff/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>OS X Stuff</title>
		<link>http://churchofthegeek.com/2007/10/26/os-x-stuff/</link>
		<comments>http://churchofthegeek.com/2007/10/26/os-x-stuff/#comments</comments>
		<pubDate>Sat, 27 Oct 2007 01:03:41 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[downloads]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2007/10/26/os-x-stuff/</guid>
		<description><![CDATA[Updated: Transmission The best bittorrent client I&#8217;ve found for OS X (and I tried all of them). NicePlayer My favorite video watching app. Little Snitch Advanced firewall I&#8217;ve read good things about. Current beta is free.]]></description>
			<content:encoded><![CDATA[<p>Updated:</p>
<p><a href="http://transmission.m0k.org/">Transmission</a><br />
The best bittorrent client I&#8217;ve found for OS X (and I tried all of them).</p>
<p><a href="http://niceplayer.sourceforge.net/">NicePlayer</a><br />
My favorite video watching app.</p>
<p><a href="http://www.obdev.at/products/littlesnitch/index.html">Little Snitch</a><br />
Advanced firewall I&#8217;ve read good things about.  Current beta is free.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/10/26/os-x-stuff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X Tidbits</title>
		<link>http://churchofthegeek.com/2007/10/23/os-x-tidbits/</link>
		<comments>http://churchofthegeek.com/2007/10/23/os-x-tidbits/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 03:14:35 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[quickies]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2007/10/23/os-x-tidbits/</guid>
		<description><![CDATA[Missile Command Widget Anèmona Screen saver based on the liquidmac app. Enabling HD Trailers in Front Row (make sure Front Row has been opened at least once before running the command)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.macupdate.com/info.php/id/26023/missile-command">Missile Command Widget</a></p>
<p><a href="http://www.macupdate.com/info.php/id/26026/an%e8mona">Anèmona</a><br />
Screen saver based on the <a href="http://uri.cat/software/LiquidMac/">liquidmac</a> app.</p>
<p><a href="http://www.macosxhints.com/article.php?story=2007101906541184">Enabling HD Trailers in Front Row</a><br />
(make sure Front Row has been opened at least once before running the command)</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/10/23/os-x-tidbits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lifehacker Love</title>
		<link>http://churchofthegeek.com/2007/10/04/lifehacker-love/</link>
		<comments>http://churchofthegeek.com/2007/10/04/lifehacker-love/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 17:08:28 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/2007/10/04/lifehacker-love/</guid>
		<description><![CDATA[Lifehacker sent out a call for submissions for an OS X menu bar show-and-tell feature about a week ago. I snapped a quick screenshot and sent mine in. Today I was happy to see they picked it up and put it on their site: http://lifehacker.com/photogallery/Menu-Bar-Show-and-Tell/2777810]]></description>
			<content:encoded><![CDATA[<p>Lifehacker sent out a call for submissions for an OS X menu bar show-and-tell feature about a week ago.  I snapped a quick screenshot and sent mine in.  Today I was happy to see they picked it up and put it on their site:</p>
<p><a href="http://lifehacker.com/photogallery/Menu-Bar-Show-and-Tell/2777810">http://lifehacker.com/photogallery/Menu-Bar-Show-and-Tell/2777810</a></p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/10/04/lifehacker-love/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>X-Chat Aqua</title>
		<link>http://churchofthegeek.com/2007/02/20/x-chat-aqua/</link>
		<comments>http://churchofthegeek.com/2007/02/20/x-chat-aqua/#comments</comments>
		<pubDate>Wed, 21 Feb 2007 02:29:20 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[freeware]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=706</guid>
		<description><![CDATA[After a difficult search X-Chat Aqua has won the coveted (in my mind, anyway) default IRC client spot on my MacBook. Irssi is still my tool of choice but sometimes a GUI-based IRC client is helpful. In the end Growl support and a complete set of independent network connection preferences (yay SOCKS proxies!) won me [...]]]></description>
			<content:encoded><![CDATA[<p>After a difficult search <a href="http://sourceforge.net/projects/xchataqua/">X-Chat Aqua</a> has won the coveted (in my mind, anyway) default IRC client spot on my MacBook.</p>
<p>Irssi is still my tool of choice but sometimes a GUI-based IRC client is helpful.</p>
<p>In the end <a href="http://growl.info/about.php">Growl support</a> and a complete set of independent network connection preferences (<a href="http://churchofthegeek.com/?p=680">yay SOCKS proxies!</a>) won me over.</p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2007/02/20/x-chat-aqua/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dark Side of the Dashboard Moon</title>
		<link>http://churchofthegeek.com/2006/12/20/dark-side-of-the-dashboard-moon/</link>
		<comments>http://churchofthegeek.com/2006/12/20/dark-side-of-the-dashboard-moon/#comments</comments>
		<pubDate>Wed, 20 Dec 2006 05:23:11 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://churchofthegeek.com/?p=688</guid>
		<description><![CDATA[I&#8217;ve had my Macbook for six months now, and I just now noticed this cool little feature in OS X&#8217;s Dashboard. The weather widget shows all kinds of weather conditions (a couple weeks ago it impressed me with little freezing rain balls bouncing off it) and at night it switches to show cloud conditions with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://churchofthegeek.com/gallery/main.php/v/screencaps/dashmoon.png.html"><img src="http://churchofthegeek.com/gallery/main.php/d/44-2/dashmoon.png" alt="Dark Dashboard Moon" align="left" border="0" hspace="5"></a>I&#8217;ve had my Macbook for six months now, and I just now noticed this cool little feature in <a href="http://www.apple.com/macosx/features/dashboard/">OS X&#8217;s Dashboard</a>.  The weather widget shows all kinds of weather conditions (a couple weeks ago it impressed me with little freezing rain balls bouncing off it) and at night it switches to show cloud conditions with the moon.  It wasn&#8217;t until just now that I noticed it tracks the exact <em>phase</em> of the moon too.</p>
<p>I opened up dashboard for the first time tonight and this is what I saw.  Sure enough we are having a clear night and a new moon, <a href="http://en.wikipedia.org/wiki/Moon_phases#Names_of_lunar_phases">meaning no moon visible at all</a>.</p>
<p>Pretty nifty.<br />
<em><br />
Click the thumbnail for the <a href="http://churchofthegeek.com/gallery/main.php/v/screencaps/dashmoon.png.html">full version</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://churchofthegeek.com/2006/12/20/dark-side-of-the-dashboard-moon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

