<div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">From: Stani&#39;s Python Editor &lt;<a href="mailto:spe.stani.be@gmail.com">spe.stani.be@gmail.com
</a>&gt;<br>This is probably very easy, but I don&#39;t find how to do it. I want to<br>execute this command if an user clicks on the icon of the alias on the<br>desktop:<br><br>/usr/bin/pythonw path/gui.pyw</blockquote><div>
<br>Like other people said, you probably don&#39;t want to do that, but unlike other people, I&#39;ll answer your question.<br><br></div><div>mkdir ~/Desktop/MyProg.app<br>echo &#39;#!/usr/bin/env pythonw /path/gui.pyw&#39; &gt; ~/Desktop/MyProg.app/MyProg
<br>chmod +x ~/Desktop/MyProg.app/MyProg<br></div></div><br>double click MyProg on the desktop and it should launch your python program using pythonw<br><br>-- <br>-alfred<br><br>