<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>Leaf Raker</title>
	<link>http://leafraker.com</link>
	<description>Personal Productivity with Mac OS X</description>
	<pubDate>Fri, 16 Nov 2007 19:35:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>Auto-Quit the Printer Application</title>
		<link>http://leafraker.com/2007/11/16/auto-quit-the-printer-application/</link>
		<comments>http://leafraker.com/2007/11/16/auto-quit-the-printer-application/#comments</comments>
		<pubDate>Fri, 16 Nov 2007 19:35:18 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
		
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://leafraker.com/2007/11/16/auto-quit-the-printer-application/</guid>
		<description><![CDATA[I like most of the new features in Leopard (yes, I even like the translucent menu bar!), but there are as always small annoyances.
One of those annoyances is that the printer application stays open and in the dock after printing. 
Fortunately there is an easy solution:
Next time you print something just right-click and select &#8220;Auto [...]]]></description>
			<content:encoded><![CDATA[<p>I like most of the new features in Leopard (yes, I even like the translucent menu bar!), but there are as always small annoyances.</p>
<p>One of those annoyances is that the printer application stays open and in the dock after printing. </p>
<p>Fortunately there is an easy solution:<br />
Next time you print something just right-click and select &#8220;Auto Quit&#8221; from the menu:</p>
<div align="center"><img src='http://leafraker.com/wp-content/uploads/2007/11/autoquitprinter.png' alt='Auto-Quit the Printer' /></div>
<p>Voila - now the printer application will quit after the job is done.</p>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2007/11/16/auto-quit-the-printer-application/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mute system volume with Apple Script and Quicksilver</title>
		<link>http://leafraker.com/2007/11/13/mute-system-volume-with-apple-script-and-quicksilver/</link>
		<comments>http://leafraker.com/2007/11/13/mute-system-volume-with-apple-script-and-quicksilver/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 19:04:34 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
		
		<category><![CDATA[Apple Script]]></category>

		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://leafraker.com/2007/11/13/mute-system-volume-with-apple-script-and-quicksilver/</guid>
		<description><![CDATA[Quicksilver&#8217;s iTunes plugin comes with several excellent scripts, one of them is to mute iTunes.
The only problem is, that you can still hear all the system sounds. Pretty annoying if you are in a meeting or sitting in a class.
My workaround was to write an Apple Script to control the system volume:


set curVol to (get [...]]]></description>
			<content:encoded><![CDATA[<p>Quicksilver&#8217;s iTunes plugin comes with several excellent scripts, one of them is to mute iTunes.</p>
<p>The only problem is, that you can still hear all the system sounds. Pretty annoying if you are in a meeting or sitting in a class.</p>
<p>My workaround was to write an Apple Script to control the system volume:</p>
<table class="codetable">
<tr>
<td>set curVol to (get (output volume of (get volume settings)))<br />
if curVol &gt; 0 then<br />
&nbsp;&nbsp;set volume output volume 0<br />
else<br />
&nbsp;&nbsp;set volume output volume 50<br />
end if</td>
</tr>
</table>
<p>This script will mute the system volume, or set it back to 50% if it&#8217;s already muted (the value for &#8220;<em>set volume</em>&#8221; is a percentage value from 0 to 100).</p>
<p>That&#8217;s it, I created a keyboard trigger to execute this script (I used Shift-Ctrl-Command + M) and I can mute my system without having to use the mouse or trackpad.</p>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2007/11/13/mute-system-volume-with-apple-script-and-quicksilver/feed/</wfw:commentRss>
		</item>
		<item>
		<title>TaskPaper for your ToDo lists</title>
		<link>http://leafraker.com/2007/10/25/taskpaper-for-your-todo-lists/</link>
		<comments>http://leafraker.com/2007/10/25/taskpaper-for-your-todo-lists/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 18:49:00 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
		
		<category><![CDATA[Personal Productivity]]></category>

		<guid isPermaLink="false">http://leafraker.com/2007/10/25/taskpaper-for-your-todo-lists/</guid>
		<description><![CDATA[Yesterday I wrote a post why I prefer to use plain text files for my ToDo-lists instead of some fancy software. Shortly after publishing the post I came across a brand new application from Hog Bay Software called TaskPaper that might just give a new spin on the things I said yesterday.
To summarize my opinion [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I wrote a post why I prefer to use <a href="http://leafraker.com/2007/10/24/gtd-with-plain-text-files/">plain text files for my ToDo-lists</a> instead of some fancy software. Shortly after publishing the post I came across a brand new application from <a href="http://hogbaysoftware.com/">Hog Bay Software</a> called <a href="http://hogbaysoftware.com/products/taskpaper">TaskPaper</a> that might just give a new spin on the things I said yesterday.</p>
<p>To summarize my opinion about TaskPaper:</p>
<h4 align="center">If you want (almost) the flexibility of plain text files with just the right amount of user convenience,<br />
TaskPaper might be the solution for you.</h4>
<p>Here is a screenshot from TaskPaper, displaying a file similar to the one I used <a href="http://leafraker.com/2007/10/24/gtd-with-plain-text-files/">yesterday</a>:</p>
<p style="text-align: center"><img src="http://leafraker.com/wp-content/uploads/2007/10/taskpaperscreenshot.png" alt="TaskPaper Screenshot" /></p>
<p style="text-align: center" align="left">&nbsp;</p>
<p>Even though Hog Bay Software had a <a href="http://hogbaysoftware.com/products/taskpaper">different idea</a> how to organize projects, I could still use it the way I prefer to do things. TaskPaper is not forcing me into a workflow that doesn&#8217;t work for me. A big round of applause for Hog Bay for not telling me how I have to organize my life!</p>
<p>Another big advantage is, in my opinion, that TaskPaper&#8217;s data file is just a plain text file. So I will always be able to access my data - even if TaskPaper is for some reason not available. So for example syncing the file to a PDA and edit it like a plain text file should not be a problem.</p>
<p>So - what kind of convenience does TaskPaper add to using a plain text file?</p>
<p>Adding what is called &#8220;Projects&#8221; in TaskPaper can be done by clicking one of the buttons at the top, or using a keyboard shortcut. Adding tags to your tasks works just the same way. In order to mark a task as &#8220;done&#8221; you can just click on the little &#8220;bubble&#8221; and the tag &#8220;@done&#8221; will be added, like in my task &#8220;Prepare papers for budget meeting&#8221; above.</p>
<p>The main disadvantage I see so far: It is not possible to &#8220;fold&#8221; sections of your data file like in BBEdit. So keeping the overview in a very long file might be a bit dicey. On the other hand, it is possible to jump between Projects with the click of a button, so navigation in a big file should not be a problem. This is similar to the menu in BBEdit to jump between headers, as shown in the following screenshots:</p>
<p align="center">
<table border="0">
<tr>
<td align="center"><img src="http://leafraker.com/wp-content/uploads/2007/10/projectlistscreenshot.png" alt="Navigation between Projects in TaskPaper" /></td>
<td align="center"><img src="http://leafraker.com/wp-content/uploads/2007/10/projectselectionbbedit.png" alt="Project selection in BBEdit" /></td>
</tr>
<tr>
<td align="center">
<h4>TaskPaper</h4>
</td>
<td align="center">
<h4>BBEdit</h4>
</td>
</tr>
</table>
<p align="left"><a href="https://hogbaysoftware.com/products/taskpaper">TaskPaper is free to try</a> for 15 days. Afterwards it&#8217;s $18.95 as an introductory offer, later probably something like  $27.95.</p>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2007/10/25/taskpaper-for-your-todo-lists/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GTD with plain text files</title>
		<link>http://leafraker.com/2007/10/24/gtd-with-plain-text-files/</link>
		<comments>http://leafraker.com/2007/10/24/gtd-with-plain-text-files/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 19:16:25 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
		
		<category><![CDATA[Personal Productivity]]></category>

		<guid isPermaLink="false">http://leafraker.com/2007/10/24/gtd-with-plain-text-files/</guid>
		<description><![CDATA[GTD (short for Getting Things Done by David Allen) is by far the best known concept for Personal Productivity and Time Management. After trying to organize my tasks according to those principles I can&#8217;t imagine how to get through my days without it.
But not everything is fine and dandy. After attending a session about GTD [...]]]></description>
			<content:encoded><![CDATA[<p>GTD (short for <a href="http://www.43folders.com/2004/09/08/getting-started-with-getting-things-done">Getting Things Done</a> by <a href="http://www.davidco.com/">David Allen</a>) is by far the best known concept for Personal Productivity and Time Management. After trying to organize my tasks according to those principles I can&#8217;t imagine how to get through my days without it.</p>
<p>But not everything is fine and dandy. After attending a session about GTD at a conference I realized, that many of the problems I have with this system are very similar to those of other users.</p>
<p>One of my challenges was that I was always on the prowl for the best software to implement my ToDo-lists (my favourite GTD tool is by the way <a href="http://www.versiontracker.com/dyn/moreinfo/macosx/32249">iGTD</a>). The challenge in this process was that I wasted a lot of time, trying to adjust my process to the software. Never mind the time I wasted switching all my tasks from one great software to the next.</p>
<p>I found it very interesting that this was the same problem for other users, especially  Software Engineers, always on the search for the perfect tool. At the above mentioned conference several people mentioned that they finally found the perfect solution: <strong>just use plain text files</strong>. The advantages seem obvious:</p>
<ul>
<li>Highly adjustable to each individuals needs</li>
<li>Never worry about software upgrades or a different operating system. Some kind of text editor will always be available, even after upgrading from Tiger to Leopard. So you will never loose your precious lists, as long as you have a backup system in place (you do, don&#8217;t you?)</li>
<li>Synchronization with PDAs, dot Mac accounts and what-ever-you-can-think-of is always possible somehow.</li>
<li>It&#8217;s easy to use Quicksilver to add new items to the list - just use &#8220;Prepend to&#8230;&#8221; from the <a href="http://docs.blacktree.com/quicksilver/plug-ins/text_manipulation_actions?DokuWiki=22fbe2aacb0ab2fd96ebd2ab6dc7d409">Text Manipulation Actions plug-in</a>.</li>
</ul>
<p>So I changed my GTD system to plain text files and never looked back!</p>
<p>As it turned out just one file was enough for my needs and here is an example how it might look like:</p>
<p style="text-align: center"><img src="http://leafraker.com/wp-content/uploads/2007/10/gtdfile.png" alt="Picture of my GTD file" /></p>
<p>For me - this is all I need. My real file is of course a lot longer (currently approx. 900 lines).</p>
<p>So, let&#8217;s look at it in more detail. The file has four sections:</p>
<ul>
<li>TODAY</li>
<li>CALENDAR (It doesn&#8217;t really matter how far in the future your calendar goes, as long as it&#8217;s far enough for what you need)</li>
<li>FOLLOW UP</li>
<li>SOMETIME/MAYBE</li>
</ul>
<p>Here is how I usually work with this file:</p>
<ul>
<li>The <strong>first thing in the morning</strong> is to move all tasks for today from the CALENDAR to TODAY. Now the first day of the calendar should be tomorrow.</li>
<li>If I <strong>finish a one-time task</strong> I just delete it from the file.</li>
<li>If I <strong>finish a recurring task</strong> (like paying the mortgage) I cut-and-paste the task to when it occurs next in the calendar.</li>
<li>If I <strong>have to wait for somebody else</strong> I cut-and-paste the task to FOLLOW UP</li>
</ul>
<p>That&#8217;s it in a nutshell. This handles 99% of everything I need to do.</p>
<p>Now, here are some minor tricks which makes working with this system easier:</p>
<ul>
<li>I named the file &#8220;_gtd.txt&#8221;.<br />
Note the underscore in the beginning of the name! The reason for the underscore is that this file will always show up at the top if I list multiple files in alphabetical order (like in the documents list of BBEdit).</li>
<li>The &#8220;syntax&#8221; of my file is something like an over-simplified <a href="http://en.wikipedia.org/wiki/Markdown">markdown</a> syntax.<br />
I chose it this way for one important reason: My editor of choice is BBedit, a text editor that supports code folding. So if I define my file to have a markdown syntax I can fold sections of the file. So even if my calendar goes two years into the future, I can just fold the months and have a neat and small(ish) file.</li>
<li>I added an indicator for the start of each &#8220;Week&#8221; to my calendar. This is mostly to have an easier frame of reference when I&#8217;m inserting a new task.<br />
For example: Adding something for this week&#8217;s friday is quick and easy, without having to look at an external calendar to find out which date we have on Friday.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2007/10/24/gtd-with-plain-text-files/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to use a Microsoft keyboard with your Mac</title>
		<link>http://leafraker.com/2007/10/04/how-to-use-a-microsoft-keyboard-with-your-mac/</link>
		<comments>http://leafraker.com/2007/10/04/how-to-use-a-microsoft-keyboard-with-your-mac/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 20:27:35 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
		
		<category><![CDATA[Apple Script]]></category>

		<category><![CDATA[Mac OS X]]></category>

		<category><![CDATA[Personal Productivity]]></category>

		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://leafraker.com/2007/10/04/how-to-use-a-microsoft-keyboard-with-your-mac/</guid>
		<description><![CDATA[Using a Microsoft keyboard with a MacBook is possible but has one major drawback: The &#8220;Option&#8221; and &#8220;Command&#8221;-keys are exchanged and called &#8220;Windows&#8221; and &#8220;Alt&#8221;-keys.
Fortunately swapping the keys so that the &#8220;Command&#8221; and &#8220;Option&#8221;-keys are in the same location like on an Apple keyboard is very simple:

Open your &#8220;System Preferences&#8221;
Select &#8220;Keyboard &#38; Mouse&#8221;
Select the &#8220;Keyboard&#8221;-tab
Click [...]]]></description>
			<content:encoded><![CDATA[<p>Using a Microsoft keyboard with a MacBook is possible but has one major drawback: The &#8220;Option&#8221; and &#8220;Command&#8221;-keys are exchanged and called &#8220;Windows&#8221; and &#8220;Alt&#8221;-keys.</p>
<p>Fortunately swapping the keys so that the &#8220;Command&#8221; and &#8220;Option&#8221;-keys are in the same location like on an Apple keyboard is very simple:</p>
<ol>
<li>Open your &#8220;System Preferences&#8221;</li>
<li>Select &#8220;Keyboard &amp; Mouse&#8221;</li>
<li>Select the &#8220;Keyboard&#8221;-tab</li>
<li>Click on &#8220;Modifier Keys&#8230;&#8221;</li>
</ol>
<p>In the resulting dialog map the Option Key to &#8220;Command&#8221; and vice versa. This is a screenshot made with Tiger, the dialog in Leopard looks a little bit different:</p>
<p style="text-align: center"><img src="http://leafraker.com/wp-content/uploads/2007/10/keymapsettings.png" alt="Key Mappings" /></p>
<p>Voila - that&#8217;s it. Now the Microsoft keyboard should behave just like an Apple keyboard.</p>
<p><strong>Now, for one additional problem (if you are still using Tiger or before):</strong></p>
<p>I am using my MacBook Pro in my office, so I&#8217;m frequently connecting and disconnecting my keyboard. Since my external keyboard is an ergonomic keyboard with Microsoft keys I would have to change those settings each and every time I connect or disconnect the keyboard. This is only the case if you&#8217;re still using Tiger or before, because in Leopard you can set the keys for each keyboard type as shown in this screenshot: <a href="http://leafraker.com/2007/10/04/how-to-use-a-microsoft-keyboard-with-your-mac/keyboard-settings-in-leopard/" rel="attachment wp-att-25" title="Keyboard settings in Leopard">Keyboard settings in Leopard</a></p>
<p>One solution is an AppleScript, which I found on the following website:</p>
<p><a href="http://fall-line.com/2007/07/02/change-keyboard-modifier-keys-automatically-on-osx-with-applescript">Change keyboard modifier keys automatically on OSX with Applescript </a></p>
<p>Now I have a Quicksilver Trigger to execute this Applescript, which makes the swapping of the &#8220;Command&#8221; and &#8220;Option&#8221;-keys quick and painless!</p>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2007/10/04/how-to-use-a-microsoft-keyboard-with-your-mac/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to eject a CD/DVD if you don&#8217;t have an eject button</title>
		<link>http://leafraker.com/2007/09/21/how-to-eject-a-cddvd-if-you-dont-have-an-eject-button/</link>
		<comments>http://leafraker.com/2007/09/21/how-to-eject-a-cddvd-if-you-dont-have-an-eject-button/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 14:03:03 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
		
		<category><![CDATA[Mac OS X]]></category>

		<category><![CDATA[Personal Productivity]]></category>

		<guid isPermaLink="false">http://leafraker.com/2007/09/21/how-to-eject-a-cddvd-if-you-dont-have-an-eject-button/</guid>
		<description><![CDATA[I&#8217;m not using an Apple-keyboard when working on my desk with my MacBook Pro, which creates a number of small but not serious annoyances. One of those annoyances are the reversed Command- and Option keys, another one is the missing &#8220;Eject&#8221; button.
So I tried to figure out how to eject CDs and DVDs from my [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not using an Apple-keyboard when working on my desk with my MacBook Pro, which creates a number of small but not serious annoyances. One of those annoyances are the <a href="http://leafraker.com/2007/10/04/how-to-use-a-microsoft-keyboard-with-your-mac/">reversed Command- and Option keys</a>, another one is the missing &#8220;Eject&#8221; button.</p>
<p>So I tried to figure out how to eject CDs and DVDs from my MacBook Pro using Quicksilver. What I discovered was something that probably a lot of users know, but I didn&#8217;t . So I thought I&#8217;ll share it here:</p>
<p align="center"><strong>If you don&#8217;t have an &#8220;Eject&#8221; button on your keyboard you can just press and hold the &#8220;F12&#8243; key for two seconds and you CD/DVD will be ejected!</strong><br />
(Small disclaimer: I think you need at least Mac OS 10.2 for this to work!)</p>
<p style="text-align: center"><img src="http://leafraker.com/wp-content/uploads/2007/09/f12key.png" alt="F12 Key" /></p>
<p>It&#8217;s that simple, no need for some fancy Quicksilver action. Sometimes life is just so much easier than expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2007/09/21/how-to-eject-a-cddvd-if-you-dont-have-an-eject-button/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to create a Quicksilver Trigger</title>
		<link>http://leafraker.com/2007/09/17/how-to-create-a-quicksilver-trigger/</link>
		<comments>http://leafraker.com/2007/09/17/how-to-create-a-quicksilver-trigger/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 21:11:09 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
		
		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://leafraker.com/2007/09/17/how-to-create-a-quicksilver-trigger/</guid>
		<description><![CDATA[A Quicksilver trigger is a convenient way to define a global shortcut, accessible no matter which application is currently active or the frontmost.
There are two kinds of triggers: Keyboard and Mouse triggers. The mouse trigger is very similar to the keyboard trigger, only that you click a mouse button along with some function keys instead [...]]]></description>
			<content:encoded><![CDATA[<p>A Quicksilver trigger is a convenient way to define a global shortcut, accessible no matter which application is currently active or the frontmost.</p>
<p>There are two kinds of triggers: Keyboard and Mouse triggers. The mouse trigger is very similar to the keyboard trigger, only that you click a mouse button along with some function keys instead of just a key.</p>
<p>Here is how to create a trigger in Quicksilver to do something very basic, for example launch Apples &#8220;Mail&#8221; application:</p>
<p>First select &#8220;<em>Triggers</em>&#8221; from the Quicksilver menu in your toolbar at the top of your screen:</p>
<p style="text-align: center"><img src="http://leafraker.com/wp-content/uploads/2007/09/toolbarpreferences.png" alt="Toolbar Preferences" /></p>
<p>In the dialog that appears Click on the little plus-sign at the bottom and select &#8220;<em>HotKey</em>&#8221; for a keyboard trigger or &#8220;<em>Mouse</em>&#8221; for a mouse trigger. In my example I am selecting &#8220;HotKey&#8221; for a keyboard trigger:</p>
<p style="text-align: center"><img src="http://leafraker.com/wp-content/uploads/2007/09/createtrigger.png" alt="Create Trigger" /></p>
<p>Quicksilver will show a dialog very similar to the normal Quicksilver interface. Define the trigger exactly the same way you would ususally use Quicksilver to do something. So in this example I select &#8220;<em>Mail</em>&#8221; as item and &#8220;<em>Open</em>&#8221; as the action:</p>
<p style="text-align: center"><img src="http://leafraker.com/wp-content/uploads/2007/09/definetrigger.png" alt="Define Trigger" /></p>
<p>You should now have a new trigger to open the mail application, so the only thing left is to define which key combination will invoke the trigger. To do that select your new trigger and click the little &#8220;i&#8221;-button at the bottom right of the dialog:</p>
<p style="text-align: center"><img src="http://leafraker.com/wp-content/uploads/2007/09/opendrawerbutton.png" alt="Open Drawer" /></p>
<p>A drawer will open with the details of the trigger:</p>
<p style="text-align: center"><img src="http://leafraker.com/wp-content/uploads/2007/09/drawerwithtriggerpreferences.png" alt="Trigger drawer" /></p>
<p>Click on the &#8220;<em>Edit</em>&#8221; button for the hot key. Enter the key combination you would like to use for the trigger.</p>
<p>I always use the combination &#8220;Shift-Control-Command&#8221; along with a defining key for all my Quicksilver triggers. This key combination may feel odd at first, but it didn&#8217;t take long for me to get used to it. The advantage of this combination is that it only very seldom causes any conflict with keyboard shortcuts in other applications.</p>
<p>This concludes the creation of a keyboard trigger. Mouse triggers are created similar, only that the drawer to define the Hot Key looks a bit different to cater for the options you have when using a mouse.</p>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2007/09/17/how-to-create-a-quicksilver-trigger/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Author of Quicksilver gives a speech</title>
		<link>http://leafraker.com/2007/09/16/author-of-quicksilver-gives-a-speech/</link>
		<comments>http://leafraker.com/2007/09/16/author-of-quicksilver-gives-a-speech/#comments</comments>
		<pubDate>Sun, 16 Sep 2007 15:34:59 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
		
		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://leafraker.com/2007/09/16/author-of-quicksilver-gives-a-speech/</guid>
		<description><![CDATA[Merlin Mann, author of the famous 43 folders site, posted a video where the author of Quicksilver (A1c0r) talks about why he wrote Quicksilver the way he did:
43 Folders: Quicksilver demo by Nicholas Jitkoff
It&#8217;s a must-see for every Quicksilver fan!
]]></description>
			<content:encoded><![CDATA[<p>Merlin Mann, author of the famous <a href="http://www.43folders.com/">43 folders</a> site, posted a video where the author of Quicksilver (A1c0r) talks about why he wrote Quicksilver the way he did:<a href="http://www.43folders.com/2007/09/05/quicksilver-demo-by-nicholas-jitkoff/"></a></p>
<p><a href="http://www.43folders.com/2007/09/05/quicksilver-demo-by-nicholas-jitkoff/">43 Folders: Quicksilver demo by Nicholas Jitkoff</a></p>
<p>It&#8217;s a must-see for every Quicksilver fan!</p>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2007/09/16/author-of-quicksilver-gives-a-speech/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Start the screen saver with Quicksilver</title>
		<link>http://leafraker.com/2007/09/14/start-the-screen-saver-with-quicksilver/</link>
		<comments>http://leafraker.com/2007/09/14/start-the-screen-saver-with-quicksilver/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 19:34:08 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
		
		<category><![CDATA[Personal Productivity]]></category>

		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://leafraker.com/2007/09/14/start-the-screen-saver-with-quicksilver/</guid>
		<description><![CDATA[Ways to quickly launch the screen saver are useful, esspecially in an environment where one want to lock the machine when stepping away from the desk.
The probably most common way is to define a &#8220;Hot Corner&#8221; (under System Preferences -&#62; Desktop &#38; Screensaver -&#62; Screen Saver -&#62; Hot Corners) to launch the screen saver. After [...]]]></description>
			<content:encoded><![CDATA[<p>Ways to quickly launch the screen saver are useful, esspecially in an environment where one want to lock the machine when stepping away from the desk.</p>
<p>The probably most common way is to define a &#8220;Hot Corner&#8221; (under System Preferences -&gt; Desktop &amp; Screensaver -&gt; Screen Saver -&gt; Hot Corners) to launch the screen saver. After doing so a quick move of the mouse into the specified corner will engage the screen saver.</p>
<p>My problem with this method is that I rarely use the track pad on my Mac Book Pro, so decided to use a Quicksilver keyboard trigger to engage the screen saver.</p>
<p>First Step: How can we launch the screen saver with Quicksilver? All we need to do is open the Screen Saver Engine, which is located here:</p>
<table border="0" width="" class="codetable">
<tr>
<td>/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app</td>
</tr>
</table>
<p>Therefore, we launch Quicksilver, enter Text Mode by typing a period and enter the path to the engine. Quicksilver should look something like this:</p>
<div align="center"><img src="http://leafraker.com/wp-content/uploads/2007/09/qs.png" alt="Start screen saver with Quicksilver" /></div>
<p>The only thing left to do is to define a keyboard trigger. I&#8217;m using &#8220;Shift/Control/Command-L&#8221; as my trigger. </p>
<p>This key combination may sound a bit awkward at first, but I&#8217;m using &#8220;Shift/Control/Command&#8221; for all my Quicksilver trigger. The nice thing about this combination is that it rarely cause conflicts with other keyboard shortcuts, and once you are used to this combination it&#8217;s really not this bad. So in this case I combined it with the letter &#8220;L&#8221;, for &#8220;Lock&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2007/09/14/start-the-screen-saver-with-quicksilver/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Use Quicksilver to toggle Nocturne</title>
		<link>http://leafraker.com/2007/09/14/use-quicksilver-to-toggle-nocturne/</link>
		<comments>http://leafraker.com/2007/09/14/use-quicksilver-to-toggle-nocturne/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 17:12:47 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
		
		<category><![CDATA[Apple Script]]></category>

		<category><![CDATA[Personal Productivity]]></category>

		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://leafraker.com/2007/09/14/use-quicksilver-to-toggle-nocturne/</guid>
		<description><![CDATA[Nocturne, a nifty little application from the creator of Quicksilver, let&#8217;s you switch the display of your Mac into night vision mode:
This &#8220;night vision mode&#8221; is more than just a toy - there are situations when it comes in very handy! I like to use it in meetings and presentations where the light in the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify; "><a href="http://docs.blacktree.com/nocturne/nocturne">Nocturne</a>, a nifty little application from the creator of Quicksilver, let&#8217;s you switch the display of your Mac into night vision mode:</p>
<p style="text-align: justify; ">This &#8220;night vision mode&#8221; is more than just a toy - there are situations when it comes in very handy! I like to use it in meetings and presentations where the light in the room are dimmed down. In those situations, the &#8220;night vision display&#8221; makes the display more comfortable for my eyes and reduces the annoyance of the bright laptop display for other people in the room.</p>
<p style="text-align: justify; ">The only drawback to Nocturne is that (to my knowledge) it doesn&#8217;t have an easy way to toggle between night vision and normal display with Quicksilver - so here is my solution:</p>
<p style="text-align: justify; ">Once Nocturne is set to &#8220;night vision&#8221; it will remember this setting and switch the display immediately when invoked. So all I needed was an application that would start Nocturne if it&#8217;s not running and quit Nocturne otherwise. A short apple script does this job for me:</p>
<table class="codetable">
<tr>
<td>
tell application &#8220;System Events&#8221;<br />
&nbsp;&nbsp;if exists process &#8220;Nocturne&#8221; then<br />
&nbsp;&nbsp;&nbsp;&nbsp;try<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;quit application &#8220;Nocturne&#8221;<br />
&nbsp;&nbsp;&nbsp;&nbsp;end try<br />
&nbsp;&nbsp;else<br />
&nbsp;&nbsp;&nbsp;&nbsp;try<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;open application &#8220;Nocturne&#8221;<br />
&nbsp;&nbsp;&nbsp;&nbsp;end try<br />
&nbsp;&nbsp;end if<br />
end tell
</td>
</tr>
</table>
<p style="text-align: justify; ">You can download this script here: <a href='http://leafraker.com/wp-content/uploads/2007/09/togglenocturne.txt' title='toggleNocturne'>toggleNocturne</a></p>
<p style="text-align: justify; ">That&#8217;s it. Save this script as an application and define a keyboard trigger in Quicksilver (I used <i>Shift-Control-Command-N</i>) to invoke it.</p>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2007/09/14/use-quicksilver-to-toggle-nocturne/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
