<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>10.4 Archives - defaults-write.com</title>
	<atom:link href="https://www.defaults-write.com/tag/10-4/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Unveil hidden macOS (OS X) features</description>
	<lastBuildDate>Tue, 16 Jun 2015 12:27:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.6.2</generator>

<image>
	<url>https://i0.wp.com/www.defaults-write.com/wp-content/uploads/2017/11/defwriteicon.jpg?fit=32%2C32&#038;ssl=1</url>
	<title>10.4 Archives - defaults-write.com</title>
	<link></link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">40598044</site>	<item>
		<title>How to add a blank space to your Dock?</title>
		<link>https://www.defaults-write.com/how-to-add-a-blank-space-to-your-dock/</link>
		
		<dc:creator><![CDATA[Mr.W]]></dc:creator>
		<pubDate>Tue, 16 Jun 2015 18:00:05 +0000</pubDate>
				<category><![CDATA[Dock]]></category>
		<category><![CDATA[10.10]]></category>
		<category><![CDATA[10.11]]></category>
		<category><![CDATA[10.4]]></category>
		<category><![CDATA[10.5]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[10.7]]></category>
		<category><![CDATA[10.8]]></category>
		<category><![CDATA[10.9]]></category>
		<guid isPermaLink="false">http://www.defaults-write.com/?p=1261</guid>

					<description><![CDATA[<p>Do you want to keep the Dock in OS X organized? You can do this with a blank space. This way, you can divide your Dock in different groups. Copy and paste the following command in a Terminal window. After the restart, the space will be added to the Dock, which you can move to any place. </p>
<p>The post <a href="https://www.defaults-write.com/how-to-add-a-blank-space-to-your-dock/">How to add a blank space to your Dock?</a> appeared first on <a href="https://www.defaults-write.com">defaults-write.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Do you want to keep the Dock in OS X organized? You can do this with a blank space. This way, you can divide your Dock in different groups. Copy and paste the following command in a Terminal window. After the restart, the space will be added to the Dock, which you can move to any place. <span id="more-1261"></span></p>
<pre lang="bash">defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'; killall Dock</pre>
<p>You can remove the empty space in the same way as deleting an app from the Dock.</p>
<p><iframe title="OS X: Lege ruimtes toevoegen aan het Dock" width="825" height="464" src="https://www.youtube.com/embed/l64lFv0GjdY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>The post <a href="https://www.defaults-write.com/how-to-add-a-blank-space-to-your-dock/">How to add a blank space to your Dock?</a> appeared first on <a href="https://www.defaults-write.com">defaults-write.com</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1261</post-id>	</item>
		<item>
		<title>Disable “Go to folder” in OS X</title>
		<link>https://www.defaults-write.com/disable-go-to-folder-in-os-x/</link>
		
		<dc:creator><![CDATA[Mr.W]]></dc:creator>
		<pubDate>Mon, 03 Sep 2012 08:31:24 +0000</pubDate>
				<category><![CDATA[Finder]]></category>
		<category><![CDATA[10.4]]></category>
		<category><![CDATA[10.5]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[10.7]]></category>
		<category><![CDATA[10.8]]></category>
		<guid isPermaLink="false">http://www.defaults-write.com/?p=315</guid>

					<description><![CDATA[<p>The Go To Folder command is the most useful features in the OS X Finder. If you want to lock down a Mac a bit more than usual, you can disable the Go To Folder menu option and keyboard shortcut using a defaults write command: defaults write com.apple.finder ProhibitGoToFolder -bool true To make the command ... <a title="Disable “Go to folder” in OS X" class="read-more" href="https://www.defaults-write.com/disable-go-to-folder-in-os-x/" aria-label="Read more about Disable “Go to folder” in OS X">Read more</a></p>
<p>The post <a href="https://www.defaults-write.com/disable-go-to-folder-in-os-x/">Disable “Go to folder” in OS X</a> appeared first on <a href="https://www.defaults-write.com">defaults-write.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>The Go To Folder command is the most useful features in the OS X Finder. If you want to lock down a Mac a bit more than usual, you can disable the Go To Folder menu option and keyboard shortcut using a defaults write command:</p>
<pre lang="bash">defaults write com.apple.finder ProhibitGoToFolder -bool true</pre>
<p>To make the command take effect, you need to restart the Finder.</p>
<pre lang="bash">killall Finder</pre>
<p>Revert to the default setting:</p>
<pre lang="bash">defaults write com.apple.finder ProhibitGoToFolder -bool false</pre>
<p>Restart Finder  </p>
<p>The post <a href="https://www.defaults-write.com/disable-go-to-folder-in-os-x/">Disable “Go to folder” in OS X</a> appeared first on <a href="https://www.defaults-write.com">defaults-write.com</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">315</post-id>	</item>
	</channel>
</rss>
