<?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>Quick Look Archives - defaults-write.com</title>
	<atom:link href="https://www.defaults-write.com/cat/quick-look/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.defaults-write.com/cat/quick-look/</link>
	<description>Unveil hidden macOS (OS X) features</description>
	<lastBuildDate>Fri, 02 Nov 2012 11:10: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>Quick Look Archives - defaults-write.com</title>
	<link>https://www.defaults-write.com/cat/quick-look/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">40598044</site>	<item>
		<title>OS X: Keep Quick Look windows in front</title>
		<link>https://www.defaults-write.com/os-x-keep-quick-look-windows-in-front/</link>
					<comments>https://www.defaults-write.com/os-x-keep-quick-look-windows-in-front/#comments</comments>
		
		<dc:creator><![CDATA[Mr.R]]></dc:creator>
		<pubDate>Sat, 03 Nov 2012 19:00:53 +0000</pubDate>
				<category><![CDATA[Quick Look]]></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=871</guid>

					<description><![CDATA[<p>When viewing a file with QuickLook it will appear in the foreground of the screen. When you select a different window, QuickLook will go to the background. It&#8217;s possible to keep the QuickLook windows in front. defaults write com.apple.Finder QLHidePanelOnDeactivate 0 Restart Finder to make changes effect. killall Finder Revert the change with: defaults write com.apple.Finder 1 http://www.youtube.com/watch?v=2_-giBSWU7w</p>
<p>The post <a href="https://www.defaults-write.com/os-x-keep-quick-look-windows-in-front/">OS X: Keep Quick Look windows in front</a> appeared first on <a href="https://www.defaults-write.com">defaults-write.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>When viewing a file with QuickLook it will appear in the foreground of the screen. When you select a different window, QuickLook will go to the background. It&#8217;s possible to keep the QuickLook windows in front. <span id="more-871"></span></p>
<pre lang="bash">defaults write com.apple.Finder QLHidePanelOnDeactivate 0</pre>
<p>Restart Finder to make changes effect.</p>
<pre lang="bash">killall Finder</pre>
<p>Revert the change with:</p>
<pre lang="bash">defaults write com.apple.Finder  1</pre>
<p>http://www.youtube.com/watch?v=2_-giBSWU7w</p>
<p>The post <a href="https://www.defaults-write.com/os-x-keep-quick-look-windows-in-front/">OS X: Keep Quick Look windows in front</a> appeared first on <a href="https://www.defaults-write.com">defaults-write.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.defaults-write.com/os-x-keep-quick-look-windows-in-front/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">871</post-id>	</item>
		<item>
		<title>Select text in a Quick Look preview window</title>
		<link>https://www.defaults-write.com/select-text-in-a-quick-look-preview-window/</link>
					<comments>https://www.defaults-write.com/select-text-in-a-quick-look-preview-window/#comments</comments>
		
		<dc:creator><![CDATA[Mr.R]]></dc:creator>
		<pubDate>Thu, 23 Aug 2012 11:36:55 +0000</pubDate>
				<category><![CDATA[Quick Look]]></category>
		<category><![CDATA[10.7]]></category>
		<category><![CDATA[10.8]]></category>
		<guid isPermaLink="false">http://www.defaults-write.com/?p=191</guid>

					<description><![CDATA[<p>If you use Quick Look to view files that features text, you’ll notice that you can’t click and drag to highlight text. This default write command will let you click and drag to highlight text, and use the cmd⌘ + C key combination to copy text. To activate the setting, open a Terminal window and type the following: defaults write com.apple.finder QLEnableTextSelection -bool TRUE To make the command take effect, you need to restart the Finder. killall Finder To deactivate the setting use: defaults delete com.apple.finder QLEnableTextSelection; killall Finder Example:</p>
<p>The post <a href="https://www.defaults-write.com/select-text-in-a-quick-look-preview-window/">Select text in a Quick Look preview window</a> appeared first on <a href="https://www.defaults-write.com">defaults-write.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you use Quick Look to view files that features text, you’ll notice that you can’t click and drag to highlight text. This default write command will let you click and drag to highlight text, and use the cmd⌘ + C key combination to copy text. <span id="more-191"></span></p>
<p>To activate the setting, open a Terminal window and type the following:</p>
<pre lang="bash">defaults write com.apple.finder QLEnableTextSelection -bool TRUE</pre>
<p>To make the command take effect, you need to restart the Finder.</p>
<pre lang="bash">killall Finder</pre>
<p>To deactivate the setting use:</p>
<pre lang="bash">defaults delete com.apple.finder QLEnableTextSelection; killall Finder</pre>
<p>Example:</p>
<p><img data-recalc-dims="1" fetchpriority="high" decoding="async" src="https://i0.wp.com/www.defaults-write.com/wp-content/uploads/2012/08/quicklook-select.png?resize=585%2C318" alt="" title="quicklook select" width="585" height="318" class="aligncenter size-full wp-image-194" /></p>
<p>The post <a href="https://www.defaults-write.com/select-text-in-a-quick-look-preview-window/">Select text in a Quick Look preview window</a> appeared first on <a href="https://www.defaults-write.com">defaults-write.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.defaults-write.com/select-text-in-a-quick-look-preview-window/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">191</post-id>	</item>
		<item>
		<title>X-Ray style Quick Look folder preview</title>
		<link>https://www.defaults-write.com/x-ray-style-quick-look-folder-preview/</link>
					<comments>https://www.defaults-write.com/x-ray-style-quick-look-folder-preview/#comments</comments>
		
		<dc:creator><![CDATA[Mr.R]]></dc:creator>
		<pubDate>Mon, 02 Jul 2012 10:59:46 +0000</pubDate>
				<category><![CDATA[Quick Look]]></category>
		<category><![CDATA[10.6]]></category>
		<category><![CDATA[10.7]]></category>
		<guid isPermaLink="false">http://www.defaults-write.com/?p=93</guid>

					<description><![CDATA[<p>This command can be performd in Mac OS X Snow Leopard (10.6) and Lion (10.7) to get folders in Quick Look preview to show up with transparent covers. This option gives you an &#8220;x-ray&#8221; style view of the icons inside a folder. defaults write com.apple.finder QLEnableXRayFolders -bool true To make the command take effect, you will need to restart the Finder killall Finder Revert to the default setting: defaults delete com.apple.finder Restart Finder Screencast:</p>
<p>The post <a href="https://www.defaults-write.com/x-ray-style-quick-look-folder-preview/">X-Ray style Quick Look folder preview</a> appeared first on <a href="https://www.defaults-write.com">defaults-write.com</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This command can be performd in Mac OS X Snow Leopard (10.6) and Lion (10.7) to get folders in Quick Look preview to show up with transparent covers. This option gives you an &#8220;x-ray&#8221; style view of the icons inside a folder. <span id="more-93"></span></p>
<pre lang="bash">defaults write com.apple.finder QLEnableXRayFolders -bool true</pre>
<p>To make the command take effect, you will need to restart the Finder</p>
<pre lang="bash">killall Finder</pre>
<p>Revert to the default setting:</p>
<pre lang="bash">defaults delete com.apple.finder</pre>
<p>Restart Finder</p>
<p>Screencast:</p>
<p><iframe width="770" height="433" src="https://www.youtube.com/embed/7GBZ_SWT-jA?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>The post <a href="https://www.defaults-write.com/x-ray-style-quick-look-folder-preview/">X-Ray style Quick Look folder preview</a> appeared first on <a href="https://www.defaults-write.com">defaults-write.com</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.defaults-write.com/x-ray-style-quick-look-folder-preview/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">93</post-id>	</item>
	</channel>
</rss>
