<?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>Leaf Raker &#187; Quicksilver</title>
	<atom:link href="http://leafraker.com/category/quicksilver/feed/" rel="self" type="application/rss+xml" />
	<link>http://leafraker.com</link>
	<description>Personal Productivity and Mac OS X</description>
	<lastBuildDate>Fri, 23 Oct 2009 19:51:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Force Quicksilver to index Firefox 3 bookmarks</title>
		<link>http://leafraker.com/2009/10/23/quicksilver-index-firefox-3-bookmarks/</link>
		<comments>http://leafraker.com/2009/10/23/quicksilver-index-firefox-3-bookmarks/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 19:50:19 +0000</pubDate>
		<dc:creator>Koinseb</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Personal Productivity]]></category>
		<category><![CDATA[Quicksilver]]></category>

		<guid isPermaLink="false">http://leafraker.com/?p=49</guid>
		<description><![CDATA[OK, this one baffled me: One of the quicksilver functionalities I use the most is the opening of URLs.
I recently switched back from Safari to Firefox 3, something I do from time to time just to keep life interesting.
Even though I enabled the Firefox plugin in Quicksilver it didn&#8217;t index the Firefox bookmarks, because Firefox [...]]]></description>
			<content:encoded><![CDATA[<p>OK, this one baffled me: One of the quicksilver functionalities I use the most is the opening of URLs.</p>
<p>I recently switched back from Safari to Firefox 3, something I do from time to time just to keep life interesting.</p>
<p>Even though I enabled the Firefox plugin in Quicksilver it didn&#8217;t index the Firefox bookmarks, because Firefox 3 stores the bookmarks in a format that Quicksilver can&#8217;t read. Fortunately the solution is simple:</p>
<p>First go to the &#8220;about:config&#8221;-page in your browser bar:</p>
<p style="text-align: center;"><img class="size-full wp-image-50 aligncenter" title="about_config" src="http://leafraker.com/wp-content/uploads/2009/10/about_config.png" alt="about_config" width="234" height="33" /></p>
<p>In the resulting page enter &#8220;bookmarks.autoExportHTML&#8221; to find the entry for &#8220;browser.bookmarks.autoExportHTML&#8221;.</p>
<p style="text-align: center;"><img class="aligncenter" title="bookmarks_settings" src="../wp-content/uploads/2009/10/bookmarks_settings.png" alt="bookmarks_settings" width="616" height="76" /></p>
<p>Now all you need to do is set the value for this preference to &#8220;true&#8221;.</p>
<p>From now on Firefox will, every time Firefox quits, write the bookmarks in html format in your preferences folder. Quicksilver will index this file (as long as the Firefox plugin in Quicksilver is enabled). You&#8217;re done!</p>
]]></content:encoded>
			<wfw:commentRss>http://leafraker.com/2009/10/23/quicksilver-index-firefox-3-bookmarks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</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>
		<slash:comments>4</slash:comments>
		</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 &#8211; 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>
		<slash:comments>5</slash:comments>
		</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>
		<slash:comments>1</slash:comments>
		</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>
		<slash:comments>0</slash:comments>
		</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>
		<slash:comments>1</slash:comments>
		</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 &#8211; 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 &#8211; 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 &#8211; 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>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
