<?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: How to Integrate Skype and MythTV</title>
	<atom:link href="http://blog.alessiosignorini.com/2010/07/how-to-integrate-skype-and-mythtv/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.alessiosignorini.com/2010/07/how-to-integrate-skype-and-mythtv/</link>
	<description>Tech, ideas, and cool stuff that go through my head every day...</description>
	<lastBuildDate>Wed, 11 Jan 2012 17:19:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Alessio Signorini</title>
		<link>http://blog.alessiosignorini.com/2010/07/how-to-integrate-skype-and-mythtv/comment-page-1/#comment-368</link>
		<dc:creator>Alessio Signorini</dc:creator>
		<pubDate>Sat, 26 Nov 2011 21:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alessiosignorini.com/?p=420#comment-368</guid>
		<description>Hello Pete, that is possible if somebody puts together a MythTV plugin using &lt;a href=&quot;http://developer.skype.com/public/skypekit&quot; rel=&quot;nofollow&quot;&gt;SkypeKit&lt;/a&gt;. Unfortunately I do not have the time to do it. :(</description>
		<content:encoded><![CDATA[<p>Hello Pete, that is possible if somebody puts together a MythTV plugin using <a href="http://developer.skype.com/public/skypekit" rel="nofollow">SkypeKit</a>. Unfortunately I do not have the time to do it. <img src='http://blog.alessiosignorini.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pete Shew</title>
		<link>http://blog.alessiosignorini.com/2010/07/how-to-integrate-skype-and-mythtv/comment-page-1/#comment-365</link>
		<dc:creator>Pete Shew</dc:creator>
		<pubDate>Tue, 15 Nov 2011 09:05:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alessiosignorini.com/?p=420#comment-365</guid>
		<description>What I would like to do is have Skype running in the background and pop up when  a call comes in. MythTV should then automatically pause (perhaps with detection of loss of focus) until the Skype window is closed.</description>
		<content:encoded><![CDATA[<p>What I would like to do is have Skype running in the background and pop up when  a call comes in. MythTV should then automatically pause (perhaps with detection of loss of focus) until the Skype window is closed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthony</title>
		<link>http://blog.alessiosignorini.com/2010/07/how-to-integrate-skype-and-mythtv/comment-page-1/#comment-298</link>
		<dc:creator>Anthony</dc:creator>
		<pubDate>Mon, 24 Jan 2011 08:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alessiosignorini.com/?p=420#comment-298</guid>
		<description>Here&#039;s a script I wrote to toggle between skype and mythfrontend+mythwelcome. If you use irexec to execute this script from a lirc key press (google irexec) you can probably adjust it to just launch mythfrontend if skype is not running.

#!/bin/bash




SERVICE=&#039;mythwelcome&#039;


echo &quot;appchk is $APPCHK &quot;
if ps ax &#124; grep -v grep &#124; grep $SERVICE &gt; /dev/null
then
# ok mythwelcome is running so kill it and mythnfrontend
echo &quot;Killing myth and launching skype&quot;
killall mythfrontend
sleep 2
killall mythwelcome
sleep 2
su mythtv -c &quot;pulseaudio -k&quot;
sleep 1
su mythtv -c &quot;DISPLAY=:0.0 /usr/bin/skype &amp;&quot;
else
#MYTHWELCOME NOT RUNNING so kill skype and launch mythwelcome which will launch mythfrontend
echo &quot;Killing skype and launching myth&quot;
killall skype
su mythtv -c &quot;DISPLAY=:0.0 /usr/bin/mythwelcome &amp;&quot;


fi


exit</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a script I wrote to toggle between skype and mythfrontend+mythwelcome. If you use irexec to execute this script from a lirc key press (google irexec) you can probably adjust it to just launch mythfrontend if skype is not running.</p>
<p>#!/bin/bash</p>
<p>SERVICE=&#8217;mythwelcome&#8217;</p>
<p>echo &#8220;appchk is $APPCHK &#8221;<br />
if ps ax | grep -v grep | grep $SERVICE &gt; /dev/null<br />
then<br />
# ok mythwelcome is running so kill it and mythnfrontend<br />
echo &#8220;Killing myth and launching skype&#8221;<br />
killall mythfrontend<br />
sleep 2<br />
killall mythwelcome<br />
sleep 2<br />
su mythtv -c &#8220;pulseaudio -k&#8221;<br />
sleep 1<br />
su mythtv -c &#8220;DISPLAY=:0.0 /usr/bin/skype &amp;&#8221;<br />
else<br />
#MYTHWELCOME NOT RUNNING so kill skype and launch mythwelcome which will launch mythfrontend<br />
echo &#8220;Killing skype and launching myth&#8221;<br />
killall skype<br />
su mythtv -c &#8220;DISPLAY=:0.0 /usr/bin/mythwelcome &amp;&#8221;</p>
<p>fi</p>
<p>exit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Gulli</title>
		<link>http://blog.alessiosignorini.com/2010/07/how-to-integrate-skype-and-mythtv/comment-page-1/#comment-198</link>
		<dc:creator>Antonio Gulli</dc:creator>
		<pubDate>Mon, 23 Aug 2010 19:33:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alessiosignorini.com/?p=420#comment-198</guid>
		<description>http://www.theregister.co.uk/2010/02/26/samsung_skype/</description>
		<content:encoded><![CDATA[<p><a href="http://www.theregister.co.uk/2010/02/26/samsung_skype/" rel="nofollow">http://www.theregister.co.uk/2010/02/26/samsung_skype/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://blog.alessiosignorini.com/2010/07/how-to-integrate-skype-and-mythtv/comment-page-1/#comment-188</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 28 Jul 2010 12:30:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.alessiosignorini.com/?p=420#comment-188</guid>
		<description>Thanks for that. So easy to do. I guess I&#039;ll use the same method for other programs too.
Any joy with LIRC yet ?</description>
		<content:encoded><![CDATA[<p>Thanks for that. So easy to do. I guess I&#8217;ll use the same method for other programs too.<br />
Any joy with LIRC yet ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

