<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Make compiz-fusion work with xscreensaver (the quick &amp; dirty way)</title>
	<atom:link href="http://jsilva.komodoopenlab.com/blog/archives/187/feed" rel="self" type="application/rss+xml" />
	<link>http://jsilva.komodoopenlab.com/blog/archives/187</link>
	<description>inclusion, equity, open source</description>
	<lastBuildDate>Wed, 23 Sep 2009 05:56:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anonymous</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/187/comment-page-1#comment-1188</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 23 Sep 2009 05:56:23 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=187#comment-1188</guid>
		<description>maybe this will work, textarea isn&#039;t supported
&lt;code&gt;#!/bin/bash
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;
while true; do
	if tail --lines=1 fixscreensaver.out &#124; grep -w UNBLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		compiz --replace --sm-disable --ignore-desktop-hints ccp --loose-binding &amp;
	fi
	if tail --lines=1 fixscreensaver.out &#124; grep -w BLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		metacity --replace &amp;
	fi
	sleep .1;
done;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>maybe this will work, textarea isn&#8217;t supported<br />
<code>#!/bin/bash<br />
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi<br />
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;<br />
while true; do<br />
	if tail --lines=1 fixscreensaver.out | grep -w UNBLANK; then<br />
		echo '' &gt;&gt; fixscreensaver.out;<br />
		compiz --replace --sm-disable --ignore-desktop-hints ccp --loose-binding &amp;<br />
	fi<br />
	if tail --lines=1 fixscreensaver.out | grep -w BLANK; then<br />
		echo '' &gt;&gt; fixscreensaver.out;<br />
		metacity --replace &amp;<br />
	fi<br />
	sleep .1;<br />
done;<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/187/comment-page-1#comment-1187</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 23 Sep 2009 05:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=187#comment-1187</guid>
		<description>this makes it easier to see
#!/bin/bash
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;
while true; do
	if tail --lines=1 fixscreensaver.out &#124; grep -w UNBLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		compiz --replace --sm-disable --ignore-desktop-hints ccp --loose-binding &amp;
	fi
	if tail --lines=1 fixscreensaver.out &#124; grep -w BLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		metacity --replace &amp;
	fi
	sleep .1;
done;
</description>
		<content:encoded><![CDATA[<p>this makes it easier to see<br />
#!/bin/bash<br />
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi<br />
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;<br />
while true; do<br />
	if tail &#8211;lines=1 fixscreensaver.out | grep -w UNBLANK; then<br />
		echo &#8221; &gt;&gt; fixscreensaver.out;<br />
		compiz &#8211;replace &#8211;sm-disable &#8211;ignore-desktop-hints ccp &#8211;loose-binding &amp;<br />
	fi<br />
	if tail &#8211;lines=1 fixscreensaver.out | grep -w BLANK; then<br />
		echo &#8221; &gt;&gt; fixscreensaver.out;<br />
		metacity &#8211;replace &amp;<br />
	fi<br />
	sleep .1;<br />
done;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/187/comment-page-1#comment-1186</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 23 Sep 2009 05:46:33 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=187#comment-1186</guid>
		<description>I used a similary script as follows, I like it more since its just one bash script, just prepend with sh and add to your session 

#!/bin/bash
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;
while true; do
	if tail --lines=1 fixscreensaver.out &#124; grep -w UNBLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		compiz --replace --sm-disable --ignore-desktop-hints ccp --loose-binding &amp;
	fi
	if tail --lines=1 fixscreensaver.out &#124; grep -w BLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		metacity --replace &amp;
	fi
	sleep .1;
done;</description>
		<content:encoded><![CDATA[<p>I used a similary script as follows, I like it more since its just one bash script, just prepend with sh and add to your session </p>
<p>#!/bin/bash<br />
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi<br />
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;<br />
while true; do<br />
	if tail &#8211;lines=1 fixscreensaver.out | grep -w UNBLANK; then<br />
		echo &#8221; &gt;&gt; fixscreensaver.out;<br />
		compiz &#8211;replace &#8211;sm-disable &#8211;ignore-desktop-hints ccp &#8211;loose-binding &amp;<br />
	fi<br />
	if tail &#8211;lines=1 fixscreensaver.out | grep -w BLANK; then<br />
		echo &#8221; &gt;&gt; fixscreensaver.out;<br />
		metacity &#8211;replace &amp;<br />
	fi<br />
	sleep .1;<br />
done;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jorge</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/187/comment-page-1#comment-182</link>
		<dc:creator>Jorge</dc:creator>
		<pubDate>Tue, 27 Jan 2009 02:48:15 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=187#comment-182</guid>
		<description>Good point darken! I modified step number 6 above to include a quick fix for this</description>
		<content:encoded><![CDATA[<p>Good point darken! I modified step number 6 above to include a quick fix for this</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: darken</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/187/comment-page-1#comment-181</link>
		<dc:creator>darken</dc:creator>
		<pubDate>Sat, 24 Jan 2009 16:42:08 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=187#comment-181</guid>
		<description>Hmm.. I don&#039;t know if this is really a solution.. don&#039;t all the windows you have open across all your desktops get put into 1 workspace when compiz is closed? I don&#039;t want to drag windows out into different workspaces everytime I come back to the PC.</description>
		<content:encoded><![CDATA[<p>Hmm.. I don&#8217;t know if this is really a solution.. don&#8217;t all the windows you have open across all your desktops get put into 1 workspace when compiz is closed? I don&#8217;t want to drag windows out into different workspaces everytime I come back to the PC.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
