<?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>OS X Daily &#187; Mac OS X</title>
	<atom:link href="http://osxdaily.com/category/mac-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://osxdaily.com</link>
	<description>News, tips, software, reviews, and more for Mac OS X, iPhone, iPad</description>
	<lastBuildDate>Fri, 25 May 2012 22:17:20 +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 Set Up a Password-less SSH Login</title>
		<link>http://osxdaily.com/2012/05/25/how-to-set-up-a-password-less-ssh-login/</link>
		<comments>http://osxdaily.com/2012/05/25/how-to-set-up-a-password-less-ssh-login/#comments</comments>
		<pubDate>Fri, 25 May 2012 18:51:08 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Remote Login]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30472</guid>
		<description><![CDATA[Setting up passwordless SSH logins is a great way to speed up connections to regularly accessed remote Macs and unix boxes. Because OS X doesn&#8217;t include the ssh-copy-id command, you will have to use cat or scp to copy over your ssh key. This is how to set everything up, it only takes a minute [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/set-up-ssh-password-less-login1.jpg" alt="Set up password-less SSH logins" title="set-up-ssh-password-less-login" width="620" height="257" class="aligncenter size-full wp-image-30480" /></p>
<p>Setting up passwordless SSH logins is a great way to speed up connections to regularly accessed <a href="http://osxdaily.com/2011/09/30/remote-login-ssh-server-mac-os-x/">remote Macs</a> and unix boxes. Because OS X doesn&#8217;t include the ssh-copy-id command, you will have to use cat or scp to copy over your ssh key. This is how to set everything up, it only takes a minute or so.</p>
<p>First, on the local machine you will want to generate a secure SSH key:</p>
<p><code>ssh-keygen</code></p>
<p>Walk through the key generator and set a password, the key file by default goes into ~/.ssh/id_rsa </p>
<p>Next, you need to copy the generated key to the remote server you want to setup passwordless logins with, this is easily done with the following command string but you can use scp if you&#8217;d prefer:</p>
<p><code>cat ~/.ssh/id_dsa.pub | ssh user@remotehost 'cat >> ~/.ssh/authorized_keys'</code></p>
<p>This command takes the generated SSH key from the local machine, connects to the remote host via SSH, and then uses cat to append the key file to the remote users authorized key list. Because this connects with SSH to the remote machine you will need to enter the password to use this command.</p>
<p>Finally, confirm that you can now login to the remote SSH server without a password:</p>
<p><code>ssh user@remotehost.com</code></p>
<p>Assuming initial setup went as intended, you will connect to the remote machine without having to log in. You can shorten the connection steps even further by <a href="http://osxdaily.com/2011/04/11/use-aliases-to-create-ssh-shortcuts/">creating an alias in bash_profile</a> so that you are only required to type a short command to immediately connect to the specified remote server.</p>
<p>There are some obvious potential security risks with using ssh without a password, the best way to mitigate that is to lock down the client machine with <a href="http://osxdaily.com/2011/01/17/lock-screen-mac/">lock screens for screen savers and sleep</a> and <a href="http://osxdaily.com/2011/01/21/password-protect-mac/">boot passwords</a>, all of which you should be utilizing anyway. </p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/25/how-to-set-up-a-password-less-ssh-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Hard Drive Health of a Mac with Disk Utility</title>
		<link>http://osxdaily.com/2012/05/24/check-hard-drive-health-mac-disk-utility/</link>
		<comments>http://osxdaily.com/2012/05/24/check-hard-drive-health-mac-disk-utility/#comments</comments>
		<pubDate>Thu, 24 May 2012 19:19:18 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[disk health]]></category>
		<category><![CDATA[disk utility]]></category>
		<category><![CDATA[drive health]]></category>
		<category><![CDATA[Repair Disk]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[verify disk]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30437</guid>
		<description><![CDATA[It&#8217;s a good idea to check the hard drive health of a Mac as part of a periodic maintenance routine. Doing this is extremely easy with Disk Utility, here&#8217;s how to do it and what to do if you encounter any issues: Launch Disk Utility, found within the /Applications/Utilities folder Select the Mac hard drive [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/check-hard-drive-disk-health.jpg" alt="Check Hard Drive health of a Mac with OS X Disk Utility" title="check-hard-drive-disk-health" width="620" height="501" class="aligncenter size-full wp-image-30438" /></p>
<p>It&#8217;s a good idea to check the hard drive health of a Mac as <a href="http://osxdaily.com/2012/03/04/mac-maintenance-tips/">part of a periodic maintenance routine</a>. Doing this is extremely easy with Disk Utility, here&#8217;s how to do it and what to do if you encounter any issues:</p>
<ol>
<li>Launch Disk Utility, found within the /Applications/Utilities folder</li>
<li>Select the Mac hard drive from the left side menu and click on the &#8220;First Aid&#8221; tab</li>
<li>Click on &#8220;Verify Disk&#8221; in the lower right corner and let it run</li>
</ol>
<p>You will find the window populating with messages about the drives health, messages that indicate things are fine appear in black, messages that indicate something is wrong appears in red. For the vast majority of users it will look something like this, finalizing with a message of &#8220;The partition map appears to be OK&#8221;, indicating no errors:</p>
<blockquote><p>Verifying partition map for “APPLE Media”<br />
Checking prerequisites<br />
Checking the partition list<br />
Checking for an EFI system partition<br />
Checking the EFI system partition’s size<br />
Checking the EFI system partition’s file system<br />
Checking all HFS data partition loader spaces<br />
Checking Core Storage Physical Volume partitions<br />
The partition map appears to be OK</p></blockquote>
<p>If you do see a red message saying something along the lines of &#8220;Error: This disk needs to be repaired&#8221; and it&#8217;s your boot drive, you&#8217;ll find the &#8220;Repair Disk&#8221; button is inaccessible. In this case all you need to do is <a href="http://osxdaily.com/2012/02/03/how-to-boot-into-os-x-lions-recovery-hd-partition/">reboot into the Recovery HD</a> partition and run Repair Disk from there, here&#8217;s how to do that in OS X Lion and Mountain Lion:</p>
<p>Before proceeding it&#8217;s a <a href="http://osxdaily.com/2010/07/21/how-to-do-manual-backups-with-time-machine/">good idea to backup your drive</a> quickly with Time Machine.</p>
<ol>
<li>Reboot the Mac and hold down Command+R (hold own Option key on some Macs)</li>
<li>Select &#8220;Recovery HD&#8221; from the boot menu</li>
<li>Choose &#8220;Disk Utility&#8221; from the Mac OS X Utilities screen</li>
<li>Click the hard drive that reported the error, click the &#8220;First Aid&#8221; tab, and now click on &#8220;Repair Disk&#8221;</li>
</ol>
<p>After Repair Disk has ran successfully, you are free to boot OS X as normal and the drives issues should be resolved.</p>
<p>A few final notes: relying on a hard drive being healthy is not an alternative to having backups, you need to backup your Mac with regularity using Time Machine or some other method if you choose. Hard drives fail, it&#8217;s a fact of computing life. It&#8217;s also important to note Disk Utility isn&#8217;t a 100% conclusive test suite to determine drive health, and if you hear weird sounds coming out of the hard drive it&#8217;s probably a good time to head down to Apple and prepare for a drive swap because that drive is likely going to croak soon.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/24/check-hard-drive-health-mac-disk-utility/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Instantly See All Keyboard Shortcuts for Mac Apps with CheatSheet</title>
		<link>http://osxdaily.com/2012/05/23/see-all-keyboard-shortcuts-apps-mac-cheatsheet/</link>
		<comments>http://osxdaily.com/2012/05/23/see-all-keyboard-shortcuts-apps-mac-cheatsheet/#comments</comments>
		<pubDate>Wed, 23 May 2012 19:25:03 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[CheatSheet]]></category>
		<category><![CDATA[keyboard shortcut]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[mac apps]]></category>
		<category><![CDATA[Mac OS X 10.7]]></category>
		<category><![CDATA[Mac OS X 10.8]]></category>
		<category><![CDATA[OS X Mountain Lion]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30404</guid>
		<description><![CDATA[There are so many keyboard shortcuts throughout Mac OS X and it&#8217;s myriad of third party apps that it&#8217;s easy to forget them or get lost trying to memorize the sea of keystrokes for each app. This is where CheatSheet will make your life easier, it&#8217;s a tiny free application that sits in the background [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/cheatsheet-view-all-keystrokes.jpg" alt="CheatSheet views all keyboard shortcuts for Mac applications" title="cheatsheet-view-all-keystrokes" width="620" height="318" class="aligncenter size-full wp-image-30408" /></p>
<p>There are <a href="http://osxdaily.com/tag/keyboard-shortcut/">so many keyboard shortcuts</a> throughout Mac OS X and it&#8217;s myriad of third party apps that it&#8217;s easy to forget them or get lost trying to memorize the sea of keystrokes for each app. This is where CheatSheet will make your life easier, it&#8217;s a tiny free application that sits in the background waiting to be summoned from any app to instantly show all keyboard shortcuts for that application.</p>
<ul>
<li><a href="http://www.cheatsheetapp.com/CheatSheet/">Get CheatSheet for free from Media Atelier</a> (requires OS X 10.7 or later)</li>
</ul>
<p>After you&#8217;ve downloaded CheatSheet, place it in /Applications/ folder and the launch the app. Now from any application, <strong>hold down the Command key for a few seconds</strong> to summon the &#8220;Cheat Sheet&#8221; list of all keyboard shortcuts for that app. This allows you to quickly see even the most obscure shortcuts that would otherwise be buried deep within a submenu somewhere. </p>
<p>Here&#8217;s a quick video showing CheatSheet in use with Google Chrome and TextEdit:</p>
<p><iframe width="620" height="450" src="http://www.youtube.com/embed/D12935E7Vx0?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>Quick troubleshooting tips: if some apps aren&#8217;t responding to the hotkey, either relaunch those apps or try releasing and holding Command again and it should activate. Also if you&#8217;ve forgotten <a href="http://osxdaily.com/2012/03/27/making-sense-of-mac-keyboard-symbols/">the meaning of Mac keyboard symbols it may be a good time to review those</a> really quickly.</p>
<p>My only complaint about CheatSheet is that since it runs in the background you have to use something like Activity Monitor to easily quit out of it. Having an optional menu item to summon the cheat sheet for the active application, give you some control over basic settings like response time, and having a quick way to quit CheatSheet would be a nice touch, but this is a free app that is very useful as is so we really can&#8217;t complain too much. </p>
<p>Whether you&#8217;re a longtime Mac user or completely new to the platform, you are practically guaranteed to find CheatSheet useful. Get it now and thank me later.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/23/see-all-keyboard-shortcuts-apps-mac-cheatsheet/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>How to Create a Disk Image of an Entire Mac Hard Drive</title>
		<link>http://osxdaily.com/2012/05/23/create-disk-image-of-mac-hard-drive/</link>
		<comments>http://osxdaily.com/2012/05/23/create-disk-image-of-mac-hard-drive/#comments</comments>
		<pubDate>Wed, 23 May 2012 16:47:02 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[back up]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[Carbon Copy Cloner]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[dmg]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30387</guid>
		<description><![CDATA[You can image a Mac hard drive with the help of a free third party utility called Carbon Copy Cloner. The resulting image will be saved as the familiar .dmg format, this has a number of potential uses ranging from creating a drive clone for backup purposes, restoring the image elsewhere as a bootable backup, [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/make-backup-of-mac-hd-disk-image.jpg" alt="Make a disk image backup of a Mac hard drive" title="make-backup-of-mac-hd-disk-image" width="620" height="434" class="aligncenter size-full wp-image-30389" /></p>
<p>You can image a Mac hard drive with the help of a free third party utility called Carbon Copy Cloner. The resulting image will be saved as the familiar .dmg format, this has a number of potential uses ranging from creating a drive clone for backup purposes, restoring the image elsewhere as a bootable backup, or even for deploying the same Mac OS X installation on multiple machines. </p>
<p>The process below will describe how to create an exact image replica of a selected Mac hard drive. If the hard drive being imaged is very large the resulting disk image is also going to be large, be sure to have adequate space to support the image or consider saving it to another location. </p>
<ol>
<li><a href="http://www.bombich.com/">Get Carbon Copy Cloner free from Bombich</a> and copy it to the /Applications/ folder</li>
<li>Launch Carbon Copy Cloner and pull down the &#8220;Source&#8221; menu, selecting &#8220;Macintosh HD&#8221; or whatever the Mac hard disk is named</li>
<li>Pull down the &#8220;Destination&#8221; menu and choose &#8220;New Disk Image&#8221;</li>
<p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/create-disk-image-mac-hd.jpg" alt="Create a disk image of a Mac hard drive" title="create-disk-image-mac-hd" width="400" height="246" class="aligncenter size-full wp-image-30388" /></p>
<li>Give the disk image a name and select a destination, if you don&#8217;t have the local storage capacity for such a large disk image be sure to choose an external or network drive as the image destination</li>
<li>Pull down the &#8220;Image Format&#8221; menu and choose &#8220;Read-only disk image&#8221;, this saves the image as the familiar DMG format</li>
<p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/save-hard-drive-disk-image-as-dmg.jpg" alt="Set the disk image as DMG format" title="save-hard-drive-disk-image-as-dmg" width="522" height="366" class="aligncenter size-full wp-image-30390" /></p>
<li>Click &#8220;OK&#8221;</li>
<li>Back at the main CCC menu, choose &#8220;Clone&#8221; to create the exact replica of the drive as a disk image file</li>
</ol>
<p>The process of creating the disk image can take a very long time depending several factors, including the speed of the Mac, the size of the disk being imaged, and the destination of the image itself. Don&#8217;t be surprised if it takes quite a while to create the backup file. </p>
<p>When finished you&#8217;ll have an exact replica of the Macs hard drive in the form of a .dmg image file. If you intend on using the image on a Windows PC, you may want to convert it <a href="http://osxdaily.com/2007/03/28/easily-convert-dmg-images-to-iso/">to an .iso first</a>.</p>
<p>You&#8217;ll notice we didn&#8217;t choose to create an <a href="http://osxdaily.com/2012/01/11/password-protect-files-folders-in-mac-os-x/">encrypted image</a>, that is an option you can use if it fits your use case, though creating encrypted drive images takes even longer and they also have the potential of issues when restoring down the road.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/23/create-disk-image-of-mac-hard-drive/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Bring Color Icons Back to the Mac OS X Finder Easily with SideEffects</title>
		<link>http://osxdaily.com/2012/05/22/color-icons-mac-os-x-finder-sideeffects/</link>
		<comments>http://osxdaily.com/2012/05/22/color-icons-mac-os-x-finder-sideeffects/#comments</comments>
		<pubDate>Tue, 22 May 2012 19:37:23 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Customize]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[finder]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mac OS X 10.7]]></category>
		<category><![CDATA[Mac OS X 10.8]]></category>
		<category><![CDATA[OS X Mountain Lion]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30363</guid>
		<description><![CDATA[If you want color icons back in your OS X Finder window sidebar but don&#8217;t want to deal with the existing procedures of manually installing SIMBL and the other components, grab SideEffects instead. SideEffects is a simple package that includes the three necessary components to add color back to Finder sidebar icons; SIMBL, ColorfulSidebar, and [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/color-sidebar-icons-side-effects.jpg" alt="Color Sidebar icons made easy with SideEffects" title="color-sidebar-icons-side-effects" width="599" height="540" class="aligncenter size-full wp-image-30378" /></p>
<p>If you want color icons back in your OS X Finder window sidebar but don&#8217;t want to deal with the <a href="http://osxdaily.com/2011/08/25/get-color-sidebar-icons-back-in-mac-os-x-10-7-lion-finder-windows/">existing procedures</a> of manually installing SIMBL and the other components, grab SideEffects instead. SideEffects is a simple package that includes the three necessary components to add color back to Finder sidebar icons; SIMBL, ColorfulSidebar, and RelaunchFinder, all wrapped into a single easy to use installer to shorten the process considerably. Gone will be the drab grayscale icons, welcome back the color. </p>
<ul>
<li><a href="http://www.macupdate.com/app/mac/43078/sideeffects">Get SideEffects free from MacUpdate</a></li>
</ul>
<p>SideEffects works with OS X 10.7.4 or later including Mountain Lion (supposedly).</p>
<p>For those wondering what is being installed and where it&#8217;s going, the files added by SideEffects are as follows:</p>
<blockquote><p>SIMBL<br />
/Library/ScriptingAdditions</p>
<p>ColorfulSidebar<br />
/Library/Application Support/SIMBL/Plugins</p>
<p>RelaunchFinder<br />
/Applications/RelaunchFinder.app</p></blockquote>
<p>Also note that RelaunchFinder.app is also added to the active <a href="http://osxdaily.com/2006/11/29/how-to-launch-application-on-system-start-in-mac-os-x/">users login items</a> so that the color icons take effect on each reboot or login.</p>
<p><em>Thanks to <a href="http://osxdaily.com/2011/08/25/get-color-sidebar-icons-back-in-mac-os-x-10-7-lion-finder-windows/#comment-390171">Simon</a> for the tip, similar icon colorization is <a href="http://osxdaily.com/2011/08/26/bring-back-color-itunes-icons-os-x-lion/">available for iTunes too</a>.</em></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/22/color-icons-mac-os-x-finder-sideeffects/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Install wget in Mac OS X Without Homebrew or MacPorts</title>
		<link>http://osxdaily.com/2012/05/22/install-wget-mac-os-x/</link>
		<comments>http://osxdaily.com/2012/05/22/install-wget-mac-os-x/#comments</comments>
		<pubDate>Tue, 22 May 2012 19:07:56 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30365</guid>
		<description><![CDATA[The command line tool wget lets you retrieve a group of files from FTP and HTTP protocols, it&#8217;s a very useful utility for web developers and powerusers to have around because it lets you do things like perform quick and dirty site backups and even mirror websites locally. This approach is going to build and [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/install-wget-mac-os-x.jpg" alt="Install wget in Mac OS X" title="install-wget-mac-os-x" width="620" height="132" class="aligncenter size-full wp-image-30368" /></p>
<p>The command line tool wget lets you retrieve a group of files from FTP and HTTP protocols, it&#8217;s a very useful utility for web developers and powerusers to have around because it lets you do things like perform <a href="http://osxdaily.com/2011/04/04/quickly-backup-a-site-through-ftp-with-wget/">quick and dirty site backups</a> and even <a href="http://osxdaily.com/2009/03/19/how-to-easily-mirror-an-entire-web-site-locally/">mirror websites locally</a>. </p>
<p>This approach is going to build and install wget in OS X from source, this means you&#8217;ll need Xcode and the Unix dev tools (<a href="http://itunes.apple.com/us/app/xcode/id497799835?mt=12">free @ Mac App Store</a>) installed, but it has the benefit of eliminating the need of a package manager like Homebrew or MacPorts. </p>
<p>Assuming you have Xcode and the command line tools installed, launch Terminal and enter the following commands:</p>
<p>First, use curl to download the latest wget source:<br />
<code>curl -O http://ftp.gnu.org/gnu/wget/wget-1.13.4.tar.gz</code></p>
<p>Next we use tar to uncompress the files you just downloaded:<br />
<code>tar -xzf wget-1.13.4.tar.gz</code></p>
<p>Use cd to change to the directory:<br />
<code>cd wget-1.13.4</code></p>
<p>Configure with the appropriate &#8211;with-ssl flag to prevent a &#8220;GNUTLS not available&#8221; error:<br />
<code>./configure --with-ssl=openssl</code></p>
<p>Build the source:<br />
<code>make</code></p>
<p>Install wget, it ends up in /usr/local/bin/:<br />
<code>sudo make install</code></p>
<p>Confirm everything worked by running wget:<br />
<code>wget --help</code></p>
<p>Clean up by removing wget source files when finished:<br />
<code>cd .. &#038;&#038; rm -rf wget*</code></p>
<p>You&#8217;re all set, enjoy wget in Mac OS X.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/22/install-wget-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Turn a Python, Perl, Ruby, or Shell Script Into a Self Contained Application for Mac OS X</title>
		<link>http://osxdaily.com/2012/05/22/turn-any-script-into-application-mac-os-x/</link>
		<comments>http://osxdaily.com/2012/05/22/turn-any-script-into-application-mac-os-x/#comments</comments>
		<pubDate>Tue, 22 May 2012 16:22:47 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[bash script]]></category>
		<category><![CDATA[mac apps]]></category>
		<category><![CDATA[mac shell scripting]]></category>
		<category><![CDATA[Platypus]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30354</guid>
		<description><![CDATA[Platypus is an excellent utility that lets you turn virtually any script into a self-contained Mac OS X application. Free and remarkably simple to use, Platypus will support just about any shell script, Perl, Python, PHP, Ruby, Tcl, AppleScript, Expect, and even other scripting languages. Using the app is easy, drag and drop a script [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/script-turned-self-contained-app.jpg" alt="Script turned into a self contained Mac OS X app" title="script-turned-self-contained-app" width="620" height="457" class="aligncenter size-full wp-image-30357" /></p>
<p>Platypus is an excellent utility that lets you turn virtually any script into a self-contained Mac OS X application. Free and remarkably simple to use, Platypus will support just about any shell script, Perl, Python, PHP, Ruby, Tcl, AppleScript, Expect, and even other scripting languages. </p>
<p>Using the app is easy, drag and drop a script onto the application, give it a name, assign an Output type (progress bar, script output, webkit view, etc), set drag &#038; drop support or not, and adjust a few other variables as necessary. When done configuring, click &#8220;Create&#8221; to build a self-contained application that holds the script inside. The resulting application is completely portable and runs independently, letting you use the app on your own Mac or elsewhere, allowing for even novice users to perform complex tasks and run scripts that would otherwise be beyond their skill level to even execute. </p>
<p>The possibilities are practically endless so let your creativity go wild, because it&#8217;s Playtpus that makes apps like the troubleshooting tool <a href="http://osxdaily.com/2012/05/21/consultants-canary-is-the-ultimate-troubleshooting-aid-for-mac-os-x/">Consultant&#8217;s Canary</a> possible.</p>
<ul>
<li><a href="http://sveinbjorn.org/platypus">Download Platypus free from Sveinbjorn</a></li>
</ul>
<p>For a basic yet practical use case, build an app to perform a necessary repetitive task and add it to a <a href="http://osxdaily.com/2006/11/29/how-to-launch-application-on-system-start-in-mac-os-x/">users Login Items</a> or put it in  the Dock or Launchpad for easy novice access. It certainly beats trying to explain to someone how to run a bash script!</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/22/turn-any-script-into-application-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quickly Minimize Windows in Mac OS X with a Keyboard Shortcut or Double-Click</title>
		<link>http://osxdaily.com/2012/05/21/quickly-minimize-windows-in-mac-os-x-with-a-keyboard-shortcut-or-double-click/</link>
		<comments>http://osxdaily.com/2012/05/21/quickly-minimize-windows-in-mac-os-x-with-a-keyboard-shortcut-or-double-click/#comments</comments>
		<pubDate>Mon, 21 May 2012 22:21:43 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[keyboard shortcut]]></category>
		<category><![CDATA[minimize]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30344</guid>
		<description><![CDATA[Virtually everyone knows you can click the yellow pill button in the upper left corner of a window to minimize a window in Mac OS X, but there are actually a few other ways minimize windows faster than that. The first is my preferred method which is a quick keystroke, and the other lets you [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/minimize-windows-mac.jpg" alt="Faster methods to minimize windows in Mac OS X" title="minimize-windows-mac" width="620" height="258" class="aligncenter size-full wp-image-30348" /></p>
<p>Virtually everyone knows you can click the yellow pill button in the upper left corner of a window to minimize a window in Mac OS X, but there are actually a few other ways minimize windows faster than that. The first is my preferred method which is a quick keystroke, and the other lets you double-click anywhere to send a window hiding.</p>
<h2 style="font-size:1.2em;">The Minimize Window Keyboard Shortcut: Command+M</h2>
<p>By far the fastest way to minimize windows is the Command+M keystroke, which works anywhere with the currently active window. You can modify it by adding an Option+H as well to <a href="http://osxdaily.com/2012/02/07/minimize-and-hide-all-windows-in-mac-os-x-with-commandoptionhm/">minimize and hide everything</a> including the currently active window with Command+Option+H+M</p>
<h2 style="font-size:1.2em;">Double-Clicking Title Bars to Minimize Windows in OS X</h2>
<p>Longtime Mac users should be familiar with this feature which lets you double-click anywhere in the titlebar to minimize a window. To do this in OS X, you&#8217;ll have to enable the feature in preferences:</p>
<ul>
<li>Open System Preferences and click on &#8220;General&#8221;</li>
<li>Look under the scroll bar section and check the box next to &#8220;Double-click a window&#8217;s title bar to minimize&#8221;</li>
</ul>
<p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/double-click-title-bar-minimize-windows.jpg" alt="Double Click a Window Title Bar to Minimize it in Mac OS X" title="double-click-title-bar-minimize-windows" width="619" height="128" class="aligncenter size-full wp-image-30345" /></p>
<p>This feature has been around in various forms since the early days of Mac OS 7, 8, and 9, long before OS X came along.</p>
<p><iframe width="620" height="450" src="http://www.youtube.com/embed/Zk8bdqBFxN8?rel=0" frameborder="0" allowfullscreen></iframe></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/21/quickly-minimize-windows-in-mac-os-x-with-a-keyboard-shortcut-or-double-click/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Consultant&#8217;s Canary is the Ultimate Troubleshooting Aid for Mac OS X</title>
		<link>http://osxdaily.com/2012/05/21/consultants-canary-is-the-ultimate-troubleshooting-aid-for-mac-os-x/</link>
		<comments>http://osxdaily.com/2012/05/21/consultants-canary-is-the-ultimate-troubleshooting-aid-for-mac-os-x/#comments</comments>
		<pubDate>Mon, 21 May 2012 14:59:28 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Consultants Canary]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30324</guid>
		<description><![CDATA[Troubleshooting computer problems is never particularly fun, and with so many potential third party add-ons, plugins, extensions, scripts, and whatever else is buried into OS X, how are you supposed to find everything to help determine what&#8217;s causing an issue? You need Consultant&#8217;s Canary, because whether you&#8217;re troubleshooting your own Mac or someone else&#8217;s, it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/consultants-canary.png" alt="Consultants Canary for Mac OS X" title="consultants-canary" width="620" height="530" class="aligncenter size-full wp-image-30325" /></p>
<p>Troubleshooting computer problems is never particularly fun, and with so many potential third party add-ons, plugins, extensions, scripts, and whatever else is buried into OS X, how are you supposed to find everything to help determine what&#8217;s causing an issue? You need Consultant&#8217;s Canary, because whether you&#8217;re troubleshooting your own Mac or someone else&#8217;s, it&#8217;s going to save you tons of time and hassle.</p>
<p>Consultant&#8217;s Canary is a free self-contained python script that lists an absurd amount of information about the OS X installation that it&#8217;s launched from, including general system information, all <a href="http://osxdaily.com/2006/11/29/how-to-launch-application-on-system-start-in-mac-os-x/">login items</a>, overly privileged processes, and a whole slew of third party system changes and augmentations, including address book plugins, Automator actions, additional frameworks, Safari plugins and extensions, kernel extensions, launchd jobs and <a href="http://osxdaily.com/2011/03/08/remove-an-agent-from-launchd/">launch agents</a>, Mail plugins, third party System Preference panels, screen savers, Spotlight add ons, <a href="http://osxdaily.com/2010/02/17/track-down-all-startup-login-script-and-application-launches-in-mac-os-x/">startup items</a>, and more. Got all that? In other words, virtually every third party add-on that is currently installed on the Mac will be found and reported back in an easy to follow list that even includes the full file paths to the found items. Nothing is modified however, leaving the task of determining what doesn&#8217;t belong in the lists up to you. </p>
<ul>
<li><a href="http://khiltd.com/software/consultants_canary">Get Consultant&#8217;s Canary free from KHI</a></a>
</ul>
<p>Using Consultant&#8217;s Canary is easy, you can run the standalone Consultant&#8217;s Canary app directly on a single Mac which launches Terminal and a python script on it&#8217;s own, or you could open the apps package to find the heart of the app &#8220;dispatcher.py&#8221; which could then be used over a network to remotely diagnose and troubleshoot multiple Macs. The same version of Consultant&#8217;s Canary will work on any version of OS X later than 10.5, including Lion. </p>
<p>CC may just be the ultimate troubleshooting aid for Mac OS X, a remarkable feet for a free utility, making it&#8217;s an absolute must-have addition to a Mac power users toolkit.</p>
<p><em>Thanks to Jean N for the great tip</em></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/21/consultants-canary-is-the-ultimate-troubleshooting-aid-for-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Create an Equalizer for All Audio in Mac OS X</title>
		<link>http://osxdaily.com/2012/05/18/equalizer-for-all-audio-mac-os-x/</link>
		<comments>http://osxdaily.com/2012/05/18/equalizer-for-all-audio-mac-os-x/#comments</comments>
		<pubDate>Fri, 18 May 2012 20:01:57 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[AU Lab]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[audio fun]]></category>
		<category><![CDATA[equalizer]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Soundflower]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30294</guid>
		<description><![CDATA[Ever wish you had a system wide equalizer to adjust all audio output in Mac OS X and not just in iTunes? Maybe you want to adjust the way all audio output sounds or maybe you just want to boost the output volume of the built-in Mac speakers. We&#8217;ll show you how to do both [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/mac-system-equalizer-audio.jpg" alt="Equalizer for all system audio in Mac OS X" title="mac-system-equalizer-audio" width="620" height="401" class="aligncenter size-full wp-image-30295" /></p>
<p>Ever wish you had a system wide equalizer to adjust all audio output in Mac OS X and not <a href="http://osxdaily.com/2011/04/09/itunes-equalizer-settings/">just in iTunes</a>? Maybe you want to adjust the way all audio output sounds or maybe you just want to boost the output volume of the built-in Mac speakers. We&#8217;ll show you how to do both by  creating your own universal EQ using two free tools, follow along:</p>
<p><strong>Requirements</strong></p>
<ul>
<li>Soundflower &#8211; <a target="_blank" href="http://code.google.com/p/soundflower/downloads/list">free download</a> from Google Code</li>
<li>AU Lab &#8211; <a target="_blank" href="https://developer.apple.com/downloads/index.action#">free download</a> from Apple Developers (requires free Apple Dev ID)</li>
</ul>
<p>Download and install both Soundflower and AU Lab, you will then need to restart your Mac to have full access to the audio components. Once rebooted, follow along with the instructions below:</p>
<h2 style="font-size:1.2em;">Set Up a Universal Audio Equalizer for Mac OS X</h2>
<ol>
<li>Set System Volume to the maximum level, do this either through the menu bar or by hitting the Volume Up key repeatedly</li>
<li>Open System Preferences from the  Apple menu and select the &#8220;Sound&#8221; panel, followed by the &#8220;Output&#8221; tab. Select &#8220;Soundflower (2ch) from the Output list</li>
<li>Now launch AU Lab, found in /Applications/Utilities/</li>
<li>From the &#8220;Audio Input Device&#8221; pulldown menu, select &#8220;Soundflower (2ch)&#8221;, and then from &#8220;Audio Output Device&#8221; menu select &#8220;Stereo In/Stereo Out&#8221;</li>
<li>Click the &#8220;Create Document&#8221; button at the bottom of the screen</li>
<li>At the next screen, look for &#8220;Output 1&#8243; column and click the &#8220;Effects&#8221; dropdown, selecting &#8220;AUGraphicEQ&#8221;</li>
<li>This is your new system-wide equalizer, set it how you see fit. Changes here will impact all audio output on the Mac</li>
<li>When satisfied with the EQ settings, hit Command+S to save the EQ settings file and put it somewhere easy to find like the Documents folder</li>
<li>Now open AU Lab preferences from the AU Lab menu, click on the &#8220;Document&#8221; tab and click the radiobox next to &#8220;Open a specific document&#8221;, selecting the .trak EQ file you saved in the previous step</li>
</ol>
<p>Optional final step: If you want the EQ settings to load on every Mac OS X boot, right-click on the AU Lab icon, go to Options, and select &#8220;Open at Login&#8221;</li>
<p>It&#8217;s important to note that AU Lab must be running in order for the equalizer to have an effect, keeping it running will consume a small amount of CPU resources but it&#8217;s much less process hungry than some of the third party alternatives available on the market.</p>
<p><em>A big thanks to <a href="http://twitter.com/gnownad/">Dan Wong</a> for sending in this tip</em></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/18/equalizer-for-all-audio-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Access the iOS Photo Stream from the Mac OS X Finder</title>
		<link>http://osxdaily.com/2012/05/18/access-ios-photo-stream-from-mac-os-x-finder/</link>
		<comments>http://osxdaily.com/2012/05/18/access-ios-photo-stream-from-mac-os-x-finder/#comments</comments>
		<pubDate>Fri, 18 May 2012 17:58:44 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[iCloud]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPod Touch]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Photo Stream]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30279</guid>
		<description><![CDATA[Photo Stream is an excellent iCloud feature that automatically syncs all pictures taken on an iPad, iPhone, or iPod touch to one anothers Photo libraries, and it will even sync with Mac OS X through the iPhoto app. Not everyone uses iPhoto to manage pictures though, and if you just want quick access to those [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/access-photo-stream-from-mac-os-x.jpg" alt="Access iOS Photo Stream from Mac OS X Finder" title="access-photo-stream-from-mac-os-x" width="620" height="299" class="aligncenter size-full wp-image-30282" /></p>
<p>Photo Stream is an excellent iCloud feature that automatically syncs all pictures taken on an iPad, iPhone, or iPod touch to one anothers Photo libraries, and it will even sync with Mac OS X through the iPhoto app. Not everyone uses iPhoto to manage pictures though, and if you just want quick access to those pictures from the OS X Finder you can use a neat trick to access the entire iOS Photo Stream directly from the Mac desktop.</p>
<p>In order for this to work, you will need the following:</p>
<ul>
<li>Mac OS X 10.7.2 or later on the Mac, with <a href="http://osxdaily.com/2011/10/12/how-to-setup-icloud/">iCloud configured</a></li>
<li>iOS 5 or later on all iOS devices, with iCloud configured</li>
<li>Photo Stream must be enabled on all iOS devices involved, and must be enabled on the Mac</li>
</ul>
<p>If you don&#8217;t have iCloud set up and Photo Stream turned on, do that before proceeding.</p>
<h2 style="font-size:1.2em;">Accessing the iOS Photo Stream from Mac OS X Finder</h2>
<ol>
<li>From anywhere on the OS X desktop, hit Command+Shift+G to bring up Go To Folder and enter the following path:</li>
<p><code>~/Library/Application Support/iLifeAssetManagement/assets/sub/</code><br />
<img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/go-to-photo-stream-folder.jpg" alt="Go to the IOS Photo Stream Folder in OS X" title="go-to-photo-stream-folder" width="442" height="139" class="aligncenter size-full wp-image-30281" /></p>
<li>In the upper right corner of the Finder window, search for &#8220;Image&#8221; and select &#8220;Kind: Image&#8221; from the pull down menu</li>
<p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/save-image-search.jpg" alt="Save image search" title="save-image-search" width="373" height="109" class="aligncenter size-full wp-image-30280" /></p>
<li>Now click the &#8220;Save&#8221; button to save this search, name it something like &#8220;Photo Stream&#8221; and check &#8220;Add To Sidebar&#8221; to keep the item in the sidebar</li>
</ol>
<p>Now anytime you click &#8220;Photo Stream&#8221; in an OS X Finder window, you will get instant access to all images from the iOS Photo Stream from your iPhone, iPad, iPod touch, or all of the above. </p>
<p>For quick access to photos, this is easier and faster than <a href="http://osxdaily.com/2010/07/10/transfer-photos-from-iphone-to-computer/">transferring them all from iOS to the computer</a> because it&#8217;s practically instantaneous and automatic, and it&#8217;s simpler than using the past tip for an AppleScript to <a href="http://osxdaily.com/2012/02/11/save-photo-stream-photos-to-folder-mac-os-x/">save all images from Photo Stream</a> because there is very little potential for error.</p>
<p>Once you have this set up you&#8217;ll likely find yourself using it very often, it&#8217;s so useful that hopefully the upcoming release of OS X Mountain Lion will include a similar featured enabled by default.</p>
<p>This is a variation on a great tip that was posted a while back by <a href="http://theiconmaster.com/2012/04/the-easy-way-to-get-ios-screenshots-on-your-mac/">IconMaster</a> to get to iOS screenshots from OS X, but by specifying any images in the search you can access all the Photo Stream images rather than only screen captures. If you do want to see only screen shots searching for file type &#8220;PNG&#8221; will achieve that.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/18/access-ios-photo-stream-from-mac-os-x-finder/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Use Instagram as a Screen Saver with Screenstagram</title>
		<link>http://osxdaily.com/2012/05/17/instagram-screen-saver-screenstagram/</link>
		<comments>http://osxdaily.com/2012/05/17/instagram-screen-saver-screenstagram/#comments</comments>
		<pubDate>Thu, 17 May 2012 22:31:51 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Customize]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Instagram]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[screen saver]]></category>
		<category><![CDATA[Screensaver]]></category>
		<category><![CDATA[Screenstagram]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30269</guid>
		<description><![CDATA[There are tons of interesting pictures posted to Instagram all the time, but unless you&#8217;re using the iOS or Android app you can&#8217;t really see what&#8217;s going on there. That&#8217;s where Screenstagram comes in, it creates an attractive screen saver using an array of images pulled from either public photos or your personal Instagram feed. [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/screenstagram-instagram-screensaver.jpg" alt="Screenstagram is an Instagram screen saver" title="screenstagram-instagram-screensaver" width="620" height="433" class="aligncenter size-full wp-image-30272" /></p>
<p>There are tons of interesting pictures posted to Instagram all the time, but unless you&#8217;re using the iOS or Android app you can&#8217;t really see what&#8217;s going on there. That&#8217;s where Screenstagram comes in, it creates an attractive screen saver using an array of images pulled from either public photos or your personal Instagram feed. </p>
<p>There aren&#8217;t many options within the screen saver, but you can either specify a Instagram login and pull pictures from your own feed and who you follow, or just let it load from the &#8220;popular&#8221; public feed. For what it&#8217;s worth, Screenstagram is really at its best when you follow some interesting people who post things you actually want to see and not necessarily random photos from John Q Public. </p>
<ul>
<li><a href="http://barbariangroup.com/software/screenstagram">Download Screenstagram free from BarbarianGroup</a></li>
</ul>
<p>If you&#8217;re not an Instagram fan you can <a href="http://osxdaily.com/2012/02/17/create-screen-saver-from-flickr-image-feed/">also use Flickr feeds as screen savers</a>, or go the oldschool route and <a href="http://osxdaily.com/2010/04/30/make-a-screensaver-out-of-your-own-images-in-mac-os-x/">build your own</a> with a folder of pictures directly in Mac OS X. </p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/17/instagram-screen-saver-screenstagram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Growl Notifications to Alert When Command Line Tasks Have Completed</title>
		<link>http://osxdaily.com/2012/05/17/use-growl-notifications-to-alert-when-command-line-tasks-have-completed/</link>
		<comments>http://osxdaily.com/2012/05/17/use-growl-notifications-to-alert-when-command-line-tasks-have-completed/#comments</comments>
		<pubDate>Thu, 17 May 2012 18:31:15 +0000</pubDate>
		<dc:creator>William Pearson</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[growl]]></category>
		<category><![CDATA[growl notification]]></category>
		<category><![CDATA[Growl notifications]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30257</guid>
		<description><![CDATA[A recent tip covered how to announce when a command line task finished by using OS X&#8217;s text-to-speech abilities. The obvious downside to that method is the sound makes it less useful to those who are using Macs in quiet environments like offices, schools, or libraries. An alternate solution is to use growlnotify to create [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/growlnotify-command-line.jpg" alt="Growl Notification sent from the command line with growlnotify" title="growlnotify-command-line" width="620" height="218" class="aligncenter size-full wp-image-30258" /></p>
<p>A recent tip covered how to announce when a command line task finished <a href="http://osxdaily.com/2012/05/08/announce-command-line-task-completion-mac-os-x/">by using OS X&#8217;s text-to-speech abilities</a>. The obvious downside to that method is the sound makes it less useful to those who are using Macs in quiet environments like offices, schools, or libraries. An alternate solution is to use growlnotify to create a silent notification when a command line task has finished.</p>
<p>You will need the following for this to work:</p>
<ul>
<li>Growl ($2 <a href="http://itunes.apple.com/us/app/growl/id467939042?mt=12">App Store</a>) or <a href="http://osxdaily.com/2011/12/19/growl-fork-brings-growl-notifications-to-mac-os-x-lion-for-free/">Growl Fork</a> (<a href="https://bitbucket.org/pmetzger/growl/downloads">free download</a>)</li>
<li><a href="http://growl.info/extras.php#growlnotify">growlnotify</a> installed</li>
</ul>
<p>Assuming both Growl and growlnotify have been installed, append growlnotify to the end of another command and use the -m flag to specify the notification message to use after the initial command has finished running. For example:</p>
<p><code>make install &#038;&#038; growlnotify -m "Install Completed"</code></p>
<p>The Growl message &#8220;Install Completed&#8221; will appear when make install has finished running. </p>
<p>Growl also makes it simple to send notifications to other hosts running growl, this can be done with the -H flag and by specifying an IP address. This is helpful if you&#8217;re compiling something large on a desktop Mac and want to send the completion notification to a MacBook Air while you&#8217;re working elsewhere.</p>
<p>The notification icon and other details can be modified through growlnotify command as well, use the &#8211;help flag to see all the options. </p>
<p><em>Thanks to <a href="http://osxdaily.com/2012/05/08/announce-command-line-task-completion-mac-os-x/#comment-386669">Theo</a> &#038; Jason for the tip idea</em></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/17/use-growl-notifications-to-alert-when-command-line-tasks-have-completed/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>OS X Mountain Lion DP3 Build 12A206j Released</title>
		<link>http://osxdaily.com/2012/05/16/os-x-mountain-lion-dp3-build-12a206j-released/</link>
		<comments>http://osxdaily.com/2012/05/16/os-x-mountain-lion-dp3-build-12a206j-released/#comments</comments>
		<pubDate>Wed, 16 May 2012 21:50:29 +0000</pubDate>
		<dc:creator>Matt Chan</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Developer Preview]]></category>
		<category><![CDATA[Mac OS X 10.8]]></category>
		<category><![CDATA[OS X Mountain Lion]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30244</guid>
		<description><![CDATA[Apple has pushed out another update to OS X Mountain Lion Developer Preview 3, as the anticipated summer public release of OS X 10.8 nears. The new build is 12A206j and can be downloaded through the Mac App Store by any registered Mac developer running 12A193i or later of Mountain Lion. The latest build includes [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/osx-mountain-lion.jpeg" alt="OS X Mountain Lion icon" title="osx-mountain-lion" width="543" height="396" class="aligncenter size-full wp-image-30247" /></p>
<p>Apple has pushed out another update to OS X Mountain Lion Developer Preview 3, as the anticipated <a href="http://osxdaily.com/2012/02/16/os-x-10-8-mountain-lion-release-date-summer-2012/">summer public release</a> of OS X 10.8 nears. The new build is 12A206j and can be downloaded through the Mac App Store by any registered Mac developer running 12A193i or later of Mountain Lion.</p>
<p>The latest build includes noticeable changes to Notification Center, Notes, Share Sheets, and several other prominent OS X 10.8 features. 12A206j also features many bug fixes though it continues to have a handful of prominent issues that are yet to be addressed. Additionally, some 2007 MacBook Pro models are currently missing support in the new version, though that is expected to be resolved in a future update. </p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/16/os-x-mountain-lion-dp3-build-12a206j-released/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Disable Automatic Termination of Apps in Mac OS X Lion &amp; Mountain Lion</title>
		<link>http://osxdaily.com/2012/05/15/disable-automatic-termination-of-apps-in-mac-os-x/</link>
		<comments>http://osxdaily.com/2012/05/15/disable-automatic-termination-of-apps-in-mac-os-x/#comments</comments>
		<pubDate>Tue, 15 May 2012 22:58:21 +0000</pubDate>
		<dc:creator>Paul Horowitz</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[defaults]]></category>
		<category><![CDATA[defaults write]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mac OS X 10.7]]></category>
		<category><![CDATA[Mac OS X 10.8]]></category>
		<category><![CDATA[OS X Mountain Lion]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://osxdaily.com/?p=30212</guid>
		<description><![CDATA[Automatic termination is a feature of OS X Lion and OS X Mountain Lion that comes from the realm of iOS, the idea is that after an app is unused for a period of time and becomes inactive, it will automatically terminate to free up resources for other tasks. With the help of the new [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p><img src="http://cdn.osxdaily.com/wp-content/uploads/2012/05/automatic-termination-apps-mac-os-x.jpg" alt="Disable Automatic Termination of Apps in Mac OS X" title="automatic-termination-apps-mac-os-x" width="620" height="192" class="aligncenter size-full wp-image-30213" /></p>
<p>Automatic termination is a feature of OS X Lion and OS X Mountain Lion that comes from the realm of iOS, the idea is that after an app is unused for a period of time and becomes inactive, it will automatically terminate to free up resources for other tasks. With the help of the new <a href="http://osxdaily.com/tag/auto-save/">auto-save</a> feature, the user should theoretically never notice any of this going on and they can continue on with their work as usual when they need to, letting Mac OS X manage processes and resources for them without quitting apps or <a href="http://osxdaily.com/2010/08/15/mac-task-manager/">manual interaction</a> through Activity Monitor.</p>
<p>For the vast majority of users this is a good thing and most are probably completely unaware of the features existence, but not everyone is thrilled with the prospect of dormant applications being quit without their command and some find it really annoying. If you fall into the second category and want to turn off automatic app termination in OS X, here is how to do it. Don&#8217;t worry, we&#8217;ll also show you how to turn it back on.</p>
<p><strong>Disable Automatic Termination in Mac OS X</strong><br />
Launch Terminal and enter the following defaults write command:</p>
<p><code>defaults write -g NSDisableAutomaticTermination -bool yes</code></p>
<p>Relaunch apps that use auto-termination for changes to take effect.</p>
<p><strong>Re-Enable Automatic App Termination in Mac OS X</strong><br />
You can always reenable the default behavior of OS X and turn auto termination back on:</p>
<p><code>defaults delete NSDisableAutomaticTermination</code></p>
<p>Or by reversing &#8220;yes&#8221; to &#8220;no&#8221; and running the original command again:</p>
<p><code>defaults write -g NSDisableAutomaticTermination -bool no</code></p>
<p>Again, relaunch apps for the changes to take effect and to have auto-terminate enabled again.</p>
<p>This is something that Mac OS X and iOS handles fairly well, and if you&#8217;ve never been annoyed by the feature it&#8217;s recommended to leave it enabled and let OS X manage tasks itself.</p>
<p><em>Thanks to qwerty for finding the tip in a <a href="http://apple.stackexchange.com/questions/48780/is-there-a-way-to-disable-os-x-auto-termination-of-applications/51246#51246">StackExchange thread</a>.</em></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://osxdaily.com/2012/05/15/disable-automatic-termination-of-apps-in-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)
Database Caching 4/29 queries in 0.022 seconds using disk: basic
Object Caching 1153/1251 objects using disk: basic
Content Delivery Network via cdn.osxdaily.com

Served from: osxdaily.com @ 2012-05-25 17:06:05 -->
