<?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>Nicholas Pike &#187; osx</title>
	<atom:link href="http://blog.npike.net/category/osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.npike.net</link>
	<description>Like nailing jelly to a wall...</description>
	<lastBuildDate>Tue, 20 Jul 2010 05:45:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>More clipboard items for OSX</title>
		<link>http://blog.npike.net/2008/01/28/more-clipboard-items-for-osx/</link>
		<comments>http://blog.npike.net/2008/01/28/more-clipboard-items-for-osx/#comments</comments>
		<pubDate>Mon, 28 Jan 2008 20:11:11 +0000</pubDate>
		<dc:creator>npike</dc:creator>
				<category><![CDATA[osx]]></category>
		<category><![CDATA[quicksilver]]></category>

		<guid isPermaLink="false">http://blog.npike.net/2008/01/28/more-clipboard-items-for-osx/</guid>
		<description><![CDATA[The internet has been buzzing with everyone&#8217;s solutions to increase the clipboard size for Windows &#8211; but what about for OS X?
Every OS X user should have QuickSilver installed &#8211; and thanks to QuickSilver you can easily have a clipboard history too!

Follow the steps below:

Open QuickSilver preferences (invoke QuickSilver, then press Apple+,)
Click on the Plugins [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.npike.net/wp-content/uploads/2008/01/picture-15.png" alt="picture-15.png" align="left" height="98" hspace="10" vspace="10" width="166" />The internet has been buzzing with everyone&#8217;s solutions to increase the clipboard size for Windows &#8211; but what about for OS X?</p>
<p><em>Every</em> OS X user should have QuickSilver installed &#8211; and thanks to QuickSilver you can easily have a clipboard history too!</p>
<p>
Follow the steps below:<a href="http://blog.npike.net/wp-content/uploads/2008/01/picture-18.png" title="picture-18.png"><img src="http://blog.npike.net/wp-content/uploads/2008/01/picture-18.thumbnail.png" alt="picture-18.png" align="right" border="0" hspace="10" vspace="10" /></a></p>
<ul>
<li>Open QuickSilver preferences (invoke QuickSilver, then press Apple+,)</li>
<li>Click on the <strong>Plugins</strong> category.</li>
<li>Put a check beside &#8220;Clipboard Module&#8221;</li>
<li>Optional:  Go to the <strong>Preferences</strong> category, click on <strong>Clipboard</strong> and increase the size of the history.  (I find 25 to be more then enough)</li>
</ul>
<p>From now on, you can get your clipboard history by invoking QuickSilver, and then typing Apple+G.  This will display the clipboard history, allowing you to pick an item to paste into the currently active application.</p>
<p style="text-align: center"><img src="http://blog.npike.net/wp-content/uploads/2008/01/picture-16.png" alt="picture-16.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.npike.net/2008/01/28/more-clipboard-items-for-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leopard:  Growl and Mail.app</title>
		<link>http://blog.npike.net/2007/12/07/leopard-growl-and-mailapp/</link>
		<comments>http://blog.npike.net/2007/12/07/leopard-growl-and-mailapp/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 16:34:11 +0000</pubDate>
		<dc:creator>npike</dc:creator>
				<category><![CDATA[leopard]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://blog.npike.net/2007/12/07/leopard-growl-and-mailapp/</guid>
		<description><![CDATA[The release of Leopard into the wild has broken a good bunch of useful third party apps &#8211; one of my favorite being GrowlMail, which gives notifications of new mail in Mail.app.
 
There&#8217;s currently no ETA from the Growl team as to when this will be fixed in Leopard, but with some clever use of [...]]]></description>
			<content:encoded><![CDATA[<p>The release of Leopard into the wild has broken a good bunch of useful third party apps &#8211; one of my favorite being GrowlMail, which gives notifications of new mail in Mail.app.</p>
<p style="text-align: center" align="center"> <img src="http://npike.net/uploads/growlmail.png" height="112" vspace="5" width="327" /></p>
<p align="left">There&#8217;s currently no ETA from the Growl team as to when this will be fixed in Leopard, but with some clever use of AppleScript, you can basically mimic its basic functionality for now.</p>
<p align="left"><strong>Create a new AppleScript with Script Editor</strong></p>
<p align="left">Paste the following into Script Editor, and save it somewhere in your home folder (I put mine in ~/AppleScripts/GrowlMail.scpt).</p>
<p align="left">&nbsp;</p>
<div class="codesnip-container">
<blockquote><pre>
on perform_mail_action(info)

            tell application "Mail" 

                set selectedMessages to |SelectedMessages| of info

                repeat with eachMessage in selectedMessages
                    set theSubject to subject of eachMessage
                    set theSender to sender of eachMessage

                    tell application "GrowlHelperApp" 

                        set the allNotificationsList to ¬
                            {"New Mail"}

                        set the enabledNotificationsList to ¬
                            {"New Mail"}

                        register as application ¬
                            "MailScript" all notifications allNotificationsList ¬
                            default notifications enabledNotificationsList ¬
                            icon of application "Mail" 

                        notify with name ¬
                            "New Mail" title ¬
                            "New Mail from " &#038; theSender description ¬
                            theSubject application name "MailScript" 

                    end tell

                end repeat
            end tell
        end perform_mail_action
</pre>
</blockquote>
</div>
<p>&#8230; and then create a new Mail Rule in Mail.app (You&#8217;ll find the Rule tab in Mail.app Preferences).</p>
<blockquote><p>
If any of the conditions are met:<br />
Every Message<br />
Perform the following actions:<br />
Run AppleScript: ~/AppleScripts/GrowlMail.scpt
</p></blockquote>
<div align="center"><img src="http://npike.net/uploads/growlnotify-mailsettings.png" vspace="5" /></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.npike.net/2007/12/07/leopard-growl-and-mailapp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
